diff options
author | icculus <icculus@noemail.net> | 2010-02-17 20:22:10 +0000 |
---|---|---|
committer | icculus <icculus@noemail.net> | 2010-02-17 20:22:10 +0000 |
commit | d0d97b09c6183f16a17a87a5ab593f8121206fec (patch) | |
tree | 691b7d866c129f1be2577e4172a69de5db449523 /tool/lemon.c | |
parent | 10163b7d825fbcc1882c00ef33ee84ebbaa0084f (diff) | |
download | sqlite-d0d97b09c6183f16a17a87a5ab593f8121206fec.tar.gz sqlite-d0d97b09c6183f16a17a87a5ab593f8121206fec.zip |
Fixed % formatting in some printf-style strings.
FossilOrigin-Name: f96add898f096cfc1e435c625ce74093d790b3c7
Diffstat (limited to 'tool/lemon.c')
-rw-r--r-- | tool/lemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/lemon.c b/tool/lemon.c index 49f3f31e5..d7e45308f 100644 --- a/tool/lemon.c +++ b/tool/lemon.c @@ -2281,7 +2281,7 @@ to follow the previous rule."); case WAITING_FOR_DESTRUCTOR_SYMBOL: if( !isalpha(x[0]) ){ ErrorMsg(psp->filename,psp->tokenlineno, - "Symbol name missing after %destructor keyword"); + "Symbol name missing after %%destructor keyword"); psp->errorcnt++; psp->state = RESYNC_AFTER_DECL_ERROR; }else{ @@ -2295,7 +2295,7 @@ to follow the previous rule."); case WAITING_FOR_DATATYPE_SYMBOL: if( !isalpha(x[0]) ){ ErrorMsg(psp->filename,psp->tokenlineno, - "Symbol name missing after %type keyword"); + "Symbol name missing after %%type keyword"); psp->errorcnt++; psp->state = RESYNC_AFTER_DECL_ERROR; }else{ |