1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix an eputf() macro without its argument in the CLI.

FossilOrigin-Name: c2f5e257d2cfb91341f5261ed3924dc4ec2a6f854f3692fb416043f5c654a963
This commit is contained in:
drh
2024-02-27 20:19:32 +00:00
parent 6324cdfdcd
commit b542933cba
3 changed files with 8 additions and 8 deletions

View File

@@ -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;
}