From: wessels <> Date: Wed, 30 Jun 1999 11:23:44 +0000 (+0000) Subject: align some common elements in unions -- just in case X-Git-Tag: SQUID_3_0_PRE1~2133 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6f992224e712629be975fa0b976a1fdf88165948;p=thirdparty%2Fsquid.git align some common elements in unions -- just in case --- diff --git a/src/structs.h b/src/structs.h index ab2627ebf9..f42548a931 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1,6 +1,6 @@ /* - * $Id: structs.h,v 1.300 1999/06/24 20:20:19 wessels Exp $ + * $Id: structs.h,v 1.301 1999/06/30 05:23:44 wessels Exp $ * * * SQUID Internet Object Cache http://squid.nlanr.net/Squid/ @@ -1371,14 +1371,14 @@ struct _storeIOState { } ufs; struct { int fd; - const char *read_buf; - link_list *pending_writes; struct { unsigned int close_request:1; unsigned int reading:1; unsigned int writing:1; unsigned int opening:1; } flags; + const char *read_buf; + link_list *pending_writes; } aufs; } type; };