1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Fix spelling typo in speedtest1.exe.

FossilOrigin-Name: ae90300e8e3221c208343e5e0d5e5f2381f38107
This commit is contained in:
mistachkin
2013-11-27 18:00:20 +00:00
parent dcb5fa06e8
commit b87875ac40
3 changed files with 9 additions and 9 deletions

View File

@ -122,7 +122,7 @@ static int integerValue(const char *zArg){
break;
}
}
if( v>0x7fffffff ) fatal_error("parameter to large - max 2147483648");
if( v>0x7fffffff ) fatal_error("parameter too large - max 2147483648");
return (int)(isNeg? -v : v);
}