diff options
Diffstat (limited to 'src/shell.c')
-rw-r--r-- | src/shell.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shell.c b/src/shell.c index 00601df47..4873d35df 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.69 2003/04/17 02:54:14 drh Exp $ +** $Id: shell.c,v 1.70 2003/04/17 22:57:54 drh Exp $ */ #include <stdlib.h> #include <string.h> @@ -285,7 +285,8 @@ static int callback(void *pArg, int nArg, char **azArg, char **azCol){ } if( p->cnt++>0 ) fprintf(p->out,"\n"); for(i=0; i<nArg; i++){ - fprintf(p->out,"%*s = %s\n", w, azCol[i], azArg[i] ? azArg[i] : p->nullvalue); + fprintf(p->out,"%*s = %s\n", w, azCol[i], + azArg[i] ? azArg[i] : p->nullvalue); } break; } |