]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat_sqlite3_errstr.c
Fix an obvious bug found during the /* FALLTHROUGH */ cleanup:
[mandoc.git] / compat_sqlite3_errstr.c
index c62384887a688c1abf03d79b20fb80dd257795e1..8a6ace28e8cd3e884963b6e65b27bc8a535b90bd 100644 (file)
@@ -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