From 648e896d0eb373187582c77715c5b5e7a57005e3 Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Mon, 6 Mar 2023 17:03:41 +0000 Subject: [PATCH] Fix [-Wstrict-prototypes] in DBA I've missed this case while doing all the other ones. --- ext/dba/libcdb/cdb_make.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dba/libcdb/cdb_make.c b/ext/dba/libcdb/cdb_make.c index c21b3c4d3ca..570e3625b0c 100644 --- a/ext/dba/libcdb/cdb_make.c +++ b/ext/dba/libcdb/cdb_make.c @@ -236,7 +236,7 @@ int cdb_make_finish(struct cdb_make *c) /* }}} */ /* {{{ cdb_make_version */ -const char *cdb_make_version() +const char *cdb_make_version(void) { return "0.75, $Id$"; }