From 49e78dd022d74f7cf0f5ccb0bc1899ce77973954 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 13 Sep 2014 23:34:08 +0200 Subject: [PATCH] reduce struct size by 8 byte on 64 bit --- ext/session/mod_files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index bc87ef9e1e..2a73216eb1 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -57,13 +57,13 @@ #endif typedef struct { - int fd; char *lastkey; char *basedir; size_t basedir_len; size_t dirdepth; size_t st_size; int filemode; + int fd; } ps_files; ps_module ps_mod_files = { -- 2.50.1