1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +03:00

Fix a typo in shell.c. Ticket #2111. (CVS 3533)

FossilOrigin-Name: 6f8a56231c4d0d990c54365f0ff0544bd8b3caf8
This commit is contained in:
drh
2006-12-19 18:47:41 +00:00
parent 9404d50e3b
commit cf68ae91ea
3 changed files with 9 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
** This file contains code to implement the "sqlite" command line
** utility for accessing SQLite databases.
**
** $Id: shell.c,v 1.156 2006/11/20 16:21:10 drh Exp $
** $Id: shell.c,v 1.157 2006/12/19 18:47:41 drh Exp $
*/
#include <stdlib.h>
#include <string.h>
@@ -1265,7 +1265,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){
set_table_name(p, "table");
}
}else {
fprintf(stderr,"mode should be on of: "
fprintf(stderr,"mode should be one of: "
"column csv html insert line list tabs tcl\n");
}
}else