From: William A. Rowe Jr Date: Fri, 18 Feb 2005 17:34:05 +0000 (+0000) Subject: 80 col style fix, no code harmed. X-Git-Tag: 2.1.3~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4167fdc172085b80451706891ace33e45ff7e63e;p=thirdparty%2Fapache%2Fhttpd.git 80 col style fix, no code harmed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@154329 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/win32/os.h b/os/win32/os.h index ae343b8026d..b6e625d53b0 100644 --- a/os/win32/os.h +++ b/os/win32/os.h @@ -51,9 +51,9 @@ extern "C" { AP_DECLARE_DATA extern int ap_real_exit_code; -#define exit(status) ((exit)((ap_real_exit_code==2) ? (ap_real_exit_code = (status)) \ - : ((ap_real_exit_code = 0), (status)))) - +#define exit(status) ((exit)((ap_real_exit_code==2) \ + ? (ap_real_exit_code = (status)) \ + : ((ap_real_exit_code = 0), (status)))) #ifdef AP_DECLARE_EXPORT