aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2023-01-03 18:51:18 +0000
committerdrh <>2023-01-03 18:51:18 +0000
commitfbde3f50bfcb2235589a5c248a23b3990fd05d9f (patch)
treefeb6dcd3e2065934d3dc6b1cb238fe469265d66e /src/sqliteInt.h
parent1eb88d6e5a5bae41ab08df5949d82d816b3bb7d6 (diff)
downloadsqlite-fbde3f50bfcb2235589a5c248a23b3990fd05d9f.tar.gz
sqlite-fbde3f50bfcb2235589a5c248a23b3990fd05d9f.zip
Avoid an unnecessary call to strlen() in the sqlite3VdbeMemStringify() routine,
for a performance increase and size reduction. FossilOrigin-Name: 284382d37850f469dc4bf3ab8efd2f20971554e897f1ba3e94d3f2f0c35d97d0
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 838c6e7b5..322cac1d6 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -5004,7 +5004,7 @@ int sqlite3FixExpr(DbFixer*, Expr*);
int sqlite3FixTriggerStep(DbFixer*, TriggerStep*);
int sqlite3RealSameAsInt(double,sqlite3_int64);
i64 sqlite3RealToI64(double);
-void sqlite3Int64ToText(i64,char*);
+int sqlite3Int64ToText(i64,char*);
int sqlite3AtoF(const char *z, double*, int, u8);
int sqlite3GetInt32(const char *, int*);
int sqlite3GetUInt32(const char*, u32*);