diff options
author | nyamatongwe <unknown> | 2008-06-15 09:19:54 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2008-06-15 09:19:54 +0000 |
commit | e72e19f4869503e7b82bf3ea84b82f58a8bd0f61 (patch) | |
tree | f02aca3aca9e373a2ad2410850671ab6d505c636 /src | |
parent | 2948394919b4415f797c317891a356277cf88f28 (diff) | |
download | scintilla-mirror-e72e19f4869503e7b82bf3ea84b82f58a8bd0f61.tar.gz |
const safety
Diffstat (limited to 'src')
-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); |