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

Fix for ticket #2883. (CVS 4711)

FossilOrigin-Name: 187f41f54d7cfbaa9f6ce3be4d213a454b600749
This commit is contained in:
drh
2008-01-14 15:20:08 +00:00
parent 0e359b30a9
commit d0e7788706
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.172 2008/01/03 07:09:48 danielk1977 Exp $
** $Id: shell.c,v 1.173 2008/01/14 15:20:08 drh Exp $
*/
#include <stdlib.h>
#include <string.h>
@@ -491,7 +491,7 @@ static void output_csv(struct callback_data *p, const char *z, int bSep){
}
}
if( bSep ){
fprintf(p->out, p->separator);
fprintf(p->out, "%s", p->separator);
}
}