diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2010-10-01 16:06:23 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2010-10-01 16:07:59 -0700 |
commit | 1916e2b703cc902b28e958540d9407a23e7bac70 (patch) | |
tree | 22bbd82229bc26d54ec17bde41a5887f3bc287db | |
parent | ac86be72f8b01ac3792737f4b67283541cf2c15b (diff) | |
download | uClibc-alpine-1916e2b703cc902b28e958540d9407a23e7bac70.tar.bz2 uClibc-alpine-1916e2b703cc902b28e958540d9407a23e7bac70.tar.xz |
sparc: pipe.S
return value of pipe on success is supposed to be 0
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r-- | libc/sysdeps/linux/sparc/pipe.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sparc/pipe.S b/libc/sysdeps/linux/sparc/pipe.S index 76a5b9617..94913d486 100644 --- a/libc/sysdeps/linux/sparc/pipe.S +++ b/libc/sysdeps/linux/sparc/pipe.S @@ -49,7 +49,7 @@ pipe: st %o0,[%i0] st %o1,[%i0+4] ret - restore %o0,%g0,%o0 + restore %g0,%g0,%o0 .Lerror: call HIDDEN_JUMPTARGET(__errno_location) |