diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-01-15 23:08:59 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-01-15 23:08:59 +0000 |
commit | ca0834218adf25b9cf44601400c1c4a8600d9f5f (patch) | |
tree | d03ac3be5c40f1897b2b6802fb3b1a2b0c4e7cfe /compat_sqlite3_errstr.c | |
parent | 0ae9da150d599305f27b737214acfa3dc181d0e8 (diff) |
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 c62384887a688..8a6ace28e8cd3 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 |