diff options
author | dan <dan@noemail.net> | 2015-05-11 18:46:42 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2015-05-11 18:46:42 +0000 |
commit | 1c1cea8baec472eb39ae92d92e2b9b1321334f9c (patch) | |
tree | ec6e360f30971e2dcb08e73ebde9a8e1c94f1e4d /src/shell.c | |
parent | 828cdb3473fadfcd8b78251e747ab3b9df1eda4a (diff) | |
parent | d13b2319234ddb4857b7b793ec3b26b76251a6ca (diff) | |
download | sqlite-1c1cea8baec472eb39ae92d92e2b9b1321334f9c.tar.gz sqlite-1c1cea8baec472eb39ae92d92e2b9b1321334f9c.zip |
Merge latest trunk changes into this branch.
FossilOrigin-Name: 82e5a6e088c58815140ad36715ac11c96527cb25
Diffstat (limited to 'src/shell.c')
-rw-r--r-- | src/shell.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shell.c b/src/shell.c index 542381a8c..7db8dbda0 100644 --- a/src/shell.c +++ b/src/shell.c @@ -3258,7 +3258,8 @@ static int do_meta_command(char *zLine, ShellState *p){ goto meta_command_exit; } if( nArg==3 ){ - sqlite3_limit(p->db, aLimit[iLimit].limitCode, integerValue(azArg[2])); + sqlite3_limit(p->db, aLimit[iLimit].limitCode, + (int)integerValue(azArg[2])); } printf("%20s %d\n", aLimit[iLimit].zLimitName, sqlite3_limit(p->db, aLimit[iLimit].limitCode, -1)); |