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 )
"popl %%ebx\n\t"
: "=a" (ret)
: "0" (238) /*SYS_tkill*/, "r" (pid), "c" (sig) );
if (ret > 0) return ret;
if (ret >= 0) return ret;
errno = -ret;
return -1;
#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