Slight fix to example program.

This commit is contained in:
Michael Kerrisk 2007-07-08 17:00:49 +00:00
parent e192bf5dcf
commit fa66abf8e5
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ int
main(int argc, char *argv[])
{
pid_t tid;
tid = (long) syscall(SYS_gettid);
tid = syscall(SYS_gettid);
}
.fi
.SH SEE ALSO