X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/a005fc4b580b8743c2baaf08bb9fa7792201861b..aaa5d1ca1a2cd9ee706ee668753bf556fd2fe433:/compat_sqlite3_errstr.c 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