diff options
| author | Matthew Wilcox <matthew@wil.cx> | 2005-01-15 17:44:57 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-01-15 17:44:57 -0800 |
| commit | ad548e8b189e0bbf5e7f6c236540ff5cb0327344 (patch) | |
| tree | 0fe903f68fd6571012674a207c6f1e1d5fcb29df | |
| parent | 9591c267eac646e500985115821c4474bfd0e650 (diff) | |
[PATCH] PA-RISC: Fix _syscallN wrappers
Fix _syscallN wrappers (Mike Frysinger)
Signed-off-by: Matthew Wilcox <willy@parisc-linux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | include/asm-parisc/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-parisc/unistd.h b/include/asm-parisc/unistd.h index d5598abaf80e..4a9e76519ad0 100644 --- a/include/asm-parisc/unistd.h +++ b/include/asm-parisc/unistd.h @@ -822,7 +822,7 @@ __sys_res = (long)__res; \ } \ if ( (unsigned long)__sys_res >= (unsigned long)-4095 ){ \ - errno = -__sys_res); \ + errno = -__sys_res; \ __sys_res = -1; \ } \ __sys_res; \ |
