diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-01 22:27:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-01 22:27:20 +0100 |
commit | ce5702fca8e7bc6c6f82a0de24abeafc6b316fef (patch) | |
tree | 9ab451233897e458026b937d9166686958eaf513 /l10ntools/source/cfglex.l | |
parent | 5e692599df6d47b614b488796747f5faadea63f7 (diff) |
ByteString::CreateFromInt32 -> OString::valueOf
Diffstat (limited to 'l10ntools/source/cfglex.l')
-rw-r--r-- | l10ntools/source/cfglex.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/source/cfglex.l b/l10ntools/source/cfglex.l index a6f6b366a8d5..feb2882632d8 100644 --- a/l10ntools/source/cfglex.l +++ b/l10ntools/source/cfglex.l @@ -137,7 +137,7 @@ int yywrap(void) } /*****************************************************************************/ -void YYWarning( char *s ) +void YYWarning( const char *s ) /*****************************************************************************/ { /* write warning to stderr */ @@ -147,9 +147,9 @@ void YYWarning( char *s ) /*****************************************************************************/ #ifdef GCC -void yyerror ( char *s, ... ) +void yyerror ( const char *s, ... ) #else -void yyerror ( char *s ) +void yyerror ( const char *s ) #endif /*****************************************************************************/ { |