diff options
author | icculus <icculus@noemail.net> | 2010-02-17 20:19:50 +0000 |
---|---|---|
committer | icculus <icculus@noemail.net> | 2010-02-17 20:19:50 +0000 |
commit | 10163b7d825fbcc1882c00ef33ee84ebbaa0084f (patch) | |
tree | 5503d08914637bdf247003ae9c56316bb3047212 /tool/lemon.c | |
parent | a3191195af7261f8b5006b91fcbffed84f1cb65c (diff) | |
download | sqlite-10163b7d825fbcc1882c00ef33ee84ebbaa0084f.tar.gz sqlite-10163b7d825fbcc1882c00ef33ee84ebbaa0084f.zip |
Corrected error message (cut-and-paste bug).
FossilOrigin-Name: b3839f2aad00844c578d496c40481a39c018e4f6
Diffstat (limited to 'tool/lemon.c')
-rw-r--r-- | tool/lemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lemon.c b/tool/lemon.c index ab9b8d53b..49f3f31e5 100644 --- a/tool/lemon.c +++ b/tool/lemon.c @@ -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 %destructor keyword"); + "Symbol name missing after %type keyword"); psp->errorcnt++; psp->state = RESYNC_AFTER_DECL_ERROR; }else{ |