From: Ben Laurie Date: Sun, 3 Jun 2001 11:21:51 +0000 (+0000) Subject: Function declaration must be a prototype. X-Git-Tag: 2.0.19~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7093cbc4f59e7e1b8a0db4c55519573eb3d72d14;p=thirdparty%2Fapache%2Fhttpd.git Function declaration must be a prototype. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89260 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/metadata/mod_headers.c b/modules/metadata/mod_headers.c index 12bf4960ba2..8e7653d00de 100644 --- a/modules/metadata/mod_headers.c +++ b/modules/metadata/mod_headers.c @@ -141,7 +141,7 @@ typedef enum { * config directive */ typedef struct { - const char* (*func)(); + const char* (*func)(request_rec *r,char *arg); char *arg; } format_tag;