diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/shell.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c.in b/src/shell.c.in index 6b363d179..ad2215608 100644 --- a/src/shell.c.in +++ b/src/shell.c.in @@ -1976,7 +1976,7 @@ static void output_quoted_string(ShellState *p, const char *zInX){ */ static void output_quoted_escaped_string(ShellState *p, const char *z){ char *zEscaped; - sqlite3_fsetmode(out, _O_BINARY); + sqlite3_fsetmode(p->out, _O_BINARY); if( p->eEscMode==SHELL_ESC_OFF ){ zEscaped = sqlite3_mprintf("%Q", z); }else{ |