From: Adhemerval Zanella Date: Tue, 29 Apr 2014 12:45:05 +0000 (-0500) Subject: Fix X-Git-Tag: upstream/2.30~7586 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc041bd4dbaf0f22b962647e0d0a1b8090d0e679;p=external%2Fglibc.git Fix --- diff --git a/sysdeps/powerpc/fpu/fedisblxcpt.c b/sysdeps/powerpc/fpu/fedisblxcpt.c index 94c01ab..448645c 100644 --- a/sysdeps/powerpc/fpu/fedisblxcpt.c +++ b/sysdeps/powerpc/fpu/fedisblxcpt.c @@ -23,7 +23,7 @@ int fedisableexcept (int excepts) { fenv_union_t fe, curr; - int result = 0, new; + int result, new; /* Get current exception mask to return. */ fe.fenv = curr.fenv = fegetenv_register (); diff --git a/sysdeps/powerpc/fpu/feenablxcpt.c b/sysdeps/powerpc/fpu/feenablxcpt.c index 01a68cf..5c0891d 100644 --- a/sysdeps/powerpc/fpu/feenablxcpt.c +++ b/sysdeps/powerpc/fpu/feenablxcpt.c @@ -23,7 +23,7 @@ int feenableexcept (int excepts) { fenv_union_t fe, curr; - int result = 0, new; + int result, new; /* Get current exception mask to return. */ fe.fenv = curr.fenv = fegetenv_register ();