diff options
author | drh <> | 2024-02-27 20:19:32 +0000 |
---|---|---|
committer | drh <> | 2024-02-27 20:19:32 +0000 |
commit | b542933cba507c9660dd41df6e73866cc4c7d601 (patch) | |
tree | fdc3e7813e6350bfef0ca3588fa3b140c7730bf3 /src | |
parent | 6324cdfdcde2362a0e641e41b60a7200563f18fb (diff) | |
download | sqlite-b542933cba507c9660dd41df6e73866cc4c7d601.tar.gz sqlite-b542933cba507c9660dd41df6e73866cc4c7d601.zip |
Fix an eputf() macro without its argument in the CLI.
FossilOrigin-Name: c2f5e257d2cfb91341f5261ed3924dc4ec2a6f854f3692fb416043f5c654a963
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 07e4b201c..05583b2f3 100644 --- a/src/shell.c.in +++ b/src/shell.c.in @@ -9185,7 +9185,7 @@ static int do_meta_command(char *zLine, ShellState *p){ if( iArg==0 ) iArg = -1; } if( (nArg!=1 && nArg!=2) || iArg<0 ){ - eputf("Usage: .intck STEPS_PER_UNLOCK\n"); + eputf("%s","Usage: .intck STEPS_PER_UNLOCK\n"); rc = 1; goto meta_command_exit; } |