syscall.2: Minor fix in example program

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2016-12-10 10:06:24 +01:00
parent d1902a5280
commit 698b2f349f
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ main(int argc, char *argv[])
pid_t tid;
tid = syscall(SYS_gettid);
tid = syscall(SYS_tgkill, getpid(), tid, SIGHUP);
syscall(SYS_tgkill, getpid(), tid, SIGHUP);
}
.fi
.SH SEE ALSO