From: Jeff Trawick Date: Mon, 3 Nov 2003 17:30:45 +0000 (+0000) Subject: fix a compile failure with recent z/OS and picky settings for compiler/ X-Git-Tag: pre_ajp_proxy~1069 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b6b4b43258f1032f28ca1f3aa8006d30ff438e1;p=thirdparty%2Fapache%2Fhttpd.git fix a compile failure with recent z/OS and picky settings for compiler/ library ("unsigned short" is more portable than "ushort") git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101690 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/unix/unixd.c b/os/unix/unixd.c index 5f19f48217a..146670f3241 100644 --- a/os/unix/unixd.c +++ b/os/unix/unixd.c @@ -445,7 +445,7 @@ AP_DECLARE(apr_status_t) unixd_set_proc_mutex_perms(apr_proc_mutex_t *pmutex) union semun { long val; struct semid_ds *buf; - ushort *array; + unsigned short *array; }; #endif union semun ick;