From 925a391cc857fd68afcf54c3e167e80d293bade8 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 4 Jun 2015 11:09:23 +0000 Subject: [PATCH] - config-lexer.l: declare ccomment() as static git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@6046 82007160-df01-0410-b94d-b575c5fd34c7 --- src/config-lexer.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config-lexer.l b/src/config-lexer.l index 01e09e7..97cb368 100644 --- a/src/config-lexer.l +++ b/src/config-lexer.l @@ -32,7 +32,7 @@ #include "config-parser.h" -void ccomment(void); +static void ccomment(void); unsigned int linenum = 1; char linebuf[512]; @@ -253,7 +253,7 @@ OFF { /* C-comment ignoring routine -kre*/ -void +static void ccomment(void) { int c = 0; -- 2.30.2