svn commit: r234934 - head/usr.sbin/jail

Jamie Gritton jamie at FreeBSD.org
Wed May 2 21:24:09 UTC 2012


Author: jamie
Date: Wed May  2 21:24:08 2012
New Revision: 234934
URL: http://svn.freebsd.org/changeset/base/234934

Log:
  Add YY_NO_INPUT so clang doesn't complain about "input" not being used.

Modified:
  head/usr.sbin/jail/jaillex.l

Modified: head/usr.sbin/jail/jaillex.l
==============================================================================
--- head/usr.sbin/jail/jaillex.l	Wed May  2 20:01:28 2012	(r234933)
+++ head/usr.sbin/jail/jaillex.l	Wed May  2 21:24:08 2012	(r234934)
@@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$");
 #include "jailp.h"
 #include "y.tab.h"
 
+#define YY_NO_INPUT
 #define YY_NO_UNPUT
 
 extern int yynerrs;


More information about the svn-src-all mailing list