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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user