diff options
author | drh <drh@noemail.net> | 2006-12-19 18:47:41 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-12-19 18:47:41 +0000 |
commit | cf68ae91eac8ba0310cc9425c55a19fe1b672848 (patch) | |
tree | f2f4423e6832b188038df52b0844a81127c3e163 /src | |
parent | 9404d50e3b4a27a1991c2c3dd43984005aaf848f (diff) | |
download | sqlite-cf68ae91eac8ba0310cc9425c55a19fe1b672848.tar.gz sqlite-cf68ae91eac8ba0310cc9425c55a19fe1b672848.zip |
Fix a typo in shell.c. Ticket #2111. (CVS 3533)
FossilOrigin-Name: 6f8a56231c4d0d990c54365f0ff0544bd8b3caf8
Diffstat (limited to 'src')
-rw-r--r-- | src/shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shell.c b/src/shell.c index 6f651350a..05a0f9ac7 100644 --- a/src/shell.c +++ b/src/shell.c @@ -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 |