From b6d8272551435098c716c546a5201206517e5da9 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Tue, 6 Oct 2015 18:32:19 +0000 Subject: modernize style: "return" is not a function --- compat_sqlite3_errstr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '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 -- cgit v1.2.3