Module Name: src
Committed By: pooka
Date: Sun Nov 1 12:34:28 UTC 2015
Modified Files:
src/sys/rump/include/rump: rump.h
Log Message:
fix typo: fnctl -> fcntl
from Robert Millan <[email protected]> via rumpkernel-users
To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/sys/rump/include/rump/rump.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/include/rump/rump.h
diff -u src/sys/rump/include/rump/rump.h:1.63 src/sys/rump/include/rump/rump.h:1.64
--- src/sys/rump/include/rump/rump.h:1.63 Fri Jun 13 15:45:02 2014
+++ src/sys/rump/include/rump/rump.h Sun Nov 1 12:34:28 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.h,v 1.63 2014/06/13 15:45:02 pooka Exp $ */
+/* $NetBSD: rump.h,v 1.64 2015/11/01 12:34:28 pooka Exp $ */
/*
* Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved.
@@ -166,7 +166,7 @@ _END_DECLS
#ifdef RUMP_SYS_IOCTL
#define ioctl(...) rump_sys_ioctl(__VA_ARGS__)
-#define fnctl(...) rump_sys_fcntl(__VA_ARGS__)
+#define fcntl(...) rump_sys_fcntl(__VA_ARGS__)
#endif /* RUMP_SYS_IOCTL */
#ifdef RUMP_SYS_CLOSE