aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-10 20:51:58 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-10 20:51:58 +0000
commita42af1c46241ddb6ab46702ddea6c2b3d826d6cd (patch)
tree1f0a463590750233bd2ff05109859e2cb2b926c5 /wsutil
parentc6a1f982e57bc57503864e715b01cd0f985d7f08 (diff)
Define ws_statb64 as struct stat *within* the "not Windows" block.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36546 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/file_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/file_util.h b/wsutil/file_util.h
index 6289173a7c..65164165c3 100644
--- a/wsutil/file_util.h
+++ b/wsutil/file_util.h
@@ -143,12 +143,12 @@ extern char *getenv_utf8(const char *varname);
#define ws_fstat64 fstat /* AC_SYS_LARGEFILE should make off_t 64-bit */
#define ws_lseek64 lseek /* AC_SYS_LARGEFILE should make off_t 64-bit */
#define O_BINARY 0 /* Win32 needs the O_BINARY flag for open() */
-#endif /* _WIN32 */
/*
* The structure to pass to ws_fstat64().
*/
#define ws_statb64 struct stat
+#endif /* _WIN32 */
/* directory handling */
#define WS_DIR GDir