]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix a compile failure with recent z/OS and picky settings for compiler/
authorJeff Trawick <trawick@apache.org>
Mon, 3 Nov 2003 17:30:45 +0000 (17:30 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 3 Nov 2003 17:30:45 +0000 (17:30 +0000)
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

os/unix/unixd.c

index 5f19f48217acdee7129b6ce7407d6b9be4ba07f5..146670f32416f45f18ecbbd7a46d14ad0e291382 100644 (file)
@@ -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;