Fix 'format not a string literal' error

pull/1/head
Timothy Pearson 12 years ago
parent 196107fd78
commit 8f9f4e5697

@ -361,7 +361,7 @@ static void output_csv(struct callback_data *p, const char *z, int bSep){
output_c_string(p->out, z);
}
if( bSep ){
fprintf(p->out, p->separator);
fprintf(p->out, "%s", p->separator);
}
}
@ -1021,7 +1021,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){
}else
if( c=='h' && strncmp(azArg[0], "help", n)==0 ){
fprintf(stderr,zHelp);
fprintf(stderr, "%s", zHelp);
}else
if( c=='i' && strncmp(azArg[0], "import", n)==0 && nArg>=3 ){

Loading…
Cancel
Save