From: Christoph M. Becker Date: Thu, 2 Jul 2015 10:16:41 +0000 (+0200) Subject: Fix alignment on 32-bit X-Git-Tag: php-7.1.0alpha3~25^2~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58b982afed4f4a5c00190e81b229375bceabe8ab;p=php Fix alignment on 32-bit --- diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c index aa1ba274e6..8122a76efe 100644 --- a/main/streams/plain_wrapper.c +++ b/main/streams/plain_wrapper.c @@ -121,7 +121,8 @@ typedef struct { unsigned is_process_pipe:1; /* use pclose instead of fclose */ unsigned is_pipe:1; /* don't try and seek */ unsigned cached_fstat:1; /* sb is valid */ - unsigned is_pipe_blocking; + unsigned is_pipe_blocking:1; /* allow blocking read() on pipes, currently Windows only */ + unsigned _reserved:28; int lock_flag; /* stores the lock state */ zend_string *temp_name; /* if non-null, this is the path to a temporary file that