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

Fix harmless compiler warning.

FossilOrigin-Name: 2525296d919245ebb01077aad541e4ae6eab7940
This commit is contained in:
mistachkin
2013-12-11 02:21:19 +00:00
parent 2dc0648a80
commit 53cd964648
3 changed files with 9 additions and 9 deletions

View File

@@ -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));
}