diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2013-07-17 13:13:44 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2013-07-17 13:13:44 +0000 |
commit | 60bd6434351643bddd94fe18af8d35152df7621d (patch) | |
tree | 73f43d7092827185f0913fbfd6ea6d91e9d49343 /share/examples/kld/syscall/test | |
parent | 9fd7a1b3ddb0f52b89ae368fe2d126677fad49e9 (diff) |
Fix typo.
Submitted by: ae
Notes
Notes:
svn path=/head/; revision=253421
Diffstat (limited to 'share/examples/kld/syscall/test')
-rw-r--r-- | share/examples/kld/syscall/test/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/examples/kld/syscall/test/call.c b/share/examples/kld/syscall/test/call.c index 23e4dc8dcc62..3611966e097d 100644 --- a/share/examples/kld/syscall/test/call.c +++ b/share/examples/kld/syscall/test/call.c @@ -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); } |