From: Anatol Belski Date: Fri, 12 Sep 2014 21:10:56 +0000 (+0200) Subject: reduce the struct size by 8 bytes on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~150^2~18^2~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bea0face486cf8908eca45ced779d0bfa0b86a75;p=php reduce the struct size by 8 bytes on 64 bit --- diff --git a/main/streams/php_stream_transport.h b/main/streams/php_stream_transport.h index 8e02f46ca1..50beb89551 100644 --- a/main/streams/php_stream_transport.h +++ b/main/streams/php_stream_transport.h @@ -191,18 +191,18 @@ PHPAPI int php_stream_xport_crypto_enable(php_stream *stream, int activate TSRML END_EXTERN_C() typedef struct _php_stream_xport_crypto_param { - enum { - STREAM_XPORT_CRYPTO_OP_SETUP, - STREAM_XPORT_CRYPTO_OP_ENABLE - } op; struct { + php_stream *session; int activate; php_stream_xport_crypt_method_t method; - php_stream *session; } inputs; struct { int returncode; } outputs; + enum { + STREAM_XPORT_CRYPTO_OP_SETUP, + STREAM_XPORT_CRYPTO_OP_ENABLE + } op; } php_stream_xport_crypto_param; BEGIN_EXTERN_C()