1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

When SQLITE_OMIT_FLOATING_POINT is defined, the floating-point formats in

the sqlite3_*printf() functions should pull an int64 off of the parameter
list and ignore it.

FossilOrigin-Name: 3fd6f9ad06b786116ca18c1e812363d30cd3060e
This commit is contained in:
drh
2010-01-13 16:43:27 +00:00
parent c5a7b51c69
commit 90038f8b07
3 changed files with 13 additions and 11 deletions

View File

@@ -606,7 +606,9 @@ void sqlite3VXPrintf(
while( nPad-- ) bufpt[i++] = '0';
length = width;
}
#endif
#else
length = 0;
#endif /* SQLITE_OMIT_FLOATING_POINT */
break;
case etSIZE:
*(va_arg(ap,int*)) = pAccum->nChar;