diff options
author | Amar Tumballi <amar@del.gluster.com> | 2009-02-20 09:37:13 -0800 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-02-20 09:40:09 -0800 |
commit | e9ac5f587763b48acc19268ce57e6bfd886a0561 (patch) | |
tree | eb18ea67d7450542cb7d4b1437824cced784dad4 /libglusterfs/src | |
parent | 99a1cac632b4325afb95cb7c183721c0a90925d7 (diff) |
fix to remove ''input' defined but not used' warning in building glusterfs
needed to complete the build scripts without warnings
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'libglusterfs/src')
-rw-r--r-- | libglusterfs/src/spec.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libglusterfs/src/spec.l b/libglusterfs/src/spec.l index 0345730b2a3..317a17280ca 100644 --- a/libglusterfs/src/spec.l +++ b/libglusterfs/src/spec.l @@ -21,6 +21,7 @@ %x STRING %option prefix="yy" %option yylineno +%option noinput %{ #define YYSTYPE char * |