diff options
Diffstat (limited to 'compat_sqlite3_errstr.c')
-rw-r--r-- | compat_sqlite3_errstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat_sqlite3_errstr.c b/compat_sqlite3_errstr.c index c6238488..8a6ace28 100644 --- a/compat_sqlite3_errstr.c +++ b/compat_sqlite3_errstr.c @@ -10,7 +10,7 @@ const char * sqlite3_errstr(int rc) { - return(rc ? "unknown error" : "not an error"); + return rc ? "unknown error" : "not an error"; } #endif |