cdb_verbose_log() : remove extra argument ; satisfies compiler warning
authorArt Cancro <ajc@citadel.org>
Tue, 27 Jun 2023 23:58:50 +0000 (19:58 -0400)
committerArt Cancro <ajc@citadel.org>
Tue, 27 Jun 2023 23:58:50 +0000 (19:58 -0400)
citadel/server/database.c

index d961f8ebfaab4f467d02aba34d783ae0afb08b75..ddd60984631c98b4826cb8922349a88fd96c2720 100644 (file)
@@ -44,7 +44,7 @@ void cdb_abort(void) {
 
 
 // Verbose logging callback
-void cdb_verbose_log(const DB_ENV *dbenv, const char *msg, const char *what_is_this) {
+void cdb_verbose_log(const DB_ENV *dbenv, const char *msg) {
        if (!IsEmptyStr(msg)) {
                syslog(LOG_DEBUG, "db: %s", msg);
        }