Commit 22824cb0 authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed typo in return value of tkill().

parent ce4d111c
...@@ -561,7 +561,7 @@ int tkill( int pid, int sig ) ...@@ -561,7 +561,7 @@ int tkill( int pid, int sig )
"popl %%ebx\n\t" "popl %%ebx\n\t"
: "=a" (ret) : "=a" (ret)
: "0" (238) /*SYS_tkill*/, "r" (pid), "c" (sig) ); : "0" (238) /*SYS_tkill*/, "r" (pid), "c" (sig) );
if (ret > 0) return ret; if (ret >= 0) return ret;
errno = -ret; errno = -ret;
return -1; return -1;
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment