mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
Fixed typo in return value of tkill().
This commit is contained in:
parent
ce4d111cd8
commit
22824cb0c3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue