aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2013-12-11 02:21:19 +0000
committermistachkin <mistachkin@noemail.net>2013-12-11 02:21:19 +0000
commit53cd96464894a49b22899455f20f76b86aef5acf (patch)
treebf405d33c3e05081212ded6721da425860269946 /src/printf.c
parent2dc0648a80dae86e6393f58e670336ae8f514485 (diff)
downloadsqlite-53cd96464894a49b22899455f20f76b86aef5acf.tar.gz
sqlite-53cd96464894a49b22899455f20f76b86aef5acf.zip
Fix harmless compiler warning.
FossilOrigin-Name: 2525296d919245ebb01077aad541e4ae6eab7940
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index 011eecdfa..a3c7462d5 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -743,7 +743,7 @@ void sqlite3StrAccumAppend(StrAccum *p, const char *z, int N){
** Append the complete text of zero-terminated string z[] to the p string.
*/
void sqlite3StrAccumAppendAll(StrAccum *p, const char *z){
- return sqlite3StrAccumAppend(p, z, sqlite3Strlen30(z));
+ sqlite3StrAccumAppend(p, z, sqlite3Strlen30(z));
}