From 24603174918a2c990cf053f4e2c92c91acd90ce2 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 4 Jun 2015 11:09:03 +0000 Subject: [PATCH] - config-lexer.l: declare ccomment() as static git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/branches/1.0.x@6045 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