diff options
Diffstat (limited to 'src/LexNsis.cxx')
-rw-r--r-- | src/LexNsis.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexNsis.cxx b/src/LexNsis.cxx index 93f0cd4d6..ab6304c42 100644 --- a/src/LexNsis.cxx +++ b/src/LexNsis.cxx @@ -98,7 +98,7 @@ static bool NsisNextLineHasElse(unsigned int start, unsigned int end, Accessor & return false; } -static int NsisCmp( char *s1, char *s2, bool bIgnoreCase ) +static int NsisCmp( const char *s1, const char *s2, bool bIgnoreCase ) { if( bIgnoreCase ) return CompareCaseInsensitive( s1, s2); |