svn commit: r253421 - head/share/examples/kld/syscall/test

Gleb Smirnoff glebius at FreeBSD.org
Wed Jul 17 13:13:44 UTC 2013


Author: glebius
Date: Wed Jul 17 13:13:44 2013
New Revision: 253421
URL: http://svnweb.freebsd.org/changeset/base/253421

Log:
  Fix typo.
  
  Submitted by:	ae

Modified:
  head/share/examples/kld/syscall/test/call.c

Modified: head/share/examples/kld/syscall/test/call.c
==============================================================================
--- head/share/examples/kld/syscall/test/call.c	Wed Jul 17 12:28:48 2013	(r253420)
+++ head/share/examples/kld/syscall/test/call.c	Wed Jul 17 13:13:44 2013	(r253421)
@@ -45,7 +45,7 @@ main(int argc __unused, char **argv __un
 	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);
 }


More information about the svn-src-head mailing list