1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Fix typo.

Submitted by:	ae
This commit is contained in:
Gleb Smirnoff 2013-07-17 13:13:44 +00:00
parent 9fd7a1b3dd
commit 60bd643435
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=253421

View File

@ -45,7 +45,7 @@ main(int argc __unused, char **argv __unused)
if ((modid = modfind("sys/syscall")) == -1)
err(1, "modfind");
if (modstat(modid, &stat) != 0)
err(1, "mostat");
err(1, "modstat");
syscall_num = stat.data.intval;
return syscall (syscall_num);
}