From: Jeff Trawick Date: Thu, 6 Sep 2001 17:38:02 +0000 (+0000) Subject: get rid of a stray semicolon in a message written to stderr X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f9e453a8b2f63dd4e5d4a86b534e1f66baffb90;p=thirdparty%2Fapache%2Fhttpd.git get rid of a stray semicolon in a message written to stderr git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@90928 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_main.c b/src/main/http_main.c index e75debdcc65..69b246559b8 100644 --- a/src/main/http_main.c +++ b/src/main/http_main.c @@ -1243,7 +1243,7 @@ char *ap_init_mutex_method(char *t) "Requested serialization method '%s' not available",t); exit(APEXIT_INIT); } else { - fprintf(stderr, "Requested serialization method '%s' not available;\n", t); + fprintf(stderr, "Requested serialization method '%s' not available\n", t); exit(APEXIT_INIT); } }