about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-01-18 21:02:53 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-01-18 21:02:53 +0000
commit19b612476147c1c70d72364b4f8379341f7a284c (patch)
tree5702ac2e27582d467a6b3f3dc3860d69f29b29ec
parentbabfbc2a065e42c1564489685c2162a7bb65a41e (diff)
downloadzsh-19b612476147c1c70d72364b4f8379341f7a284c.tar.gz
zsh-19b612476147c1c70d72364b4f8379341f7a284c.tar.xz
zsh-19b612476147c1c70d72364b4f8379341f7a284c.zip
zsh-workers/9357
-rw-r--r--Src/glob.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/glob.c b/Src/glob.c
index 73a752536..fc2c64cfd 100644
--- a/Src/glob.c
+++ b/Src/glob.c
@@ -41,13 +41,13 @@
 typedef struct gmatch *Gmatch; 
 
 struct gmatch {
-    char *name;
     off_t size ALIGN64;
+    off_t _size ALIGN64;
+    char *name;
     long atime;
     long mtime;
     long ctime;
     long links;
-    off_t _size ALIGN64;
     long _atime;
     long _mtime;
     long _ctime;
@@ -102,10 +102,10 @@ typedef struct stat *Statptr;	 /* This makes the Ultrix compiler happy.  Go figu
 typedef int (*TestMatchFunc) _((char *, struct stat *, off_t, char *));
 
 struct qual {
+    off_t data ALIGN64;		/* Argument passed to function               */
     struct qual *next;		/* Next qualifier, must match                */
     struct qual *or;		/* Alternative set of qualifiers to match    */
     TestMatchFunc func;		/* Function to call to test match            */
-    off_t data ALIGN64;		/* Argument passed to function               */
     int sense;			/* Whether asserting or negating             */
     int amc;			/* Flag for which time to test (a, m, c)     */
     int range;			/* Whether to test <, > or = (as per signum) */