mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 02:42:55 +00:00
compiler warning fix
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
7eab72fbe6
commit
cef6cc66de
1 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,8 @@
|
|||
// the host must support all of the functions, if that is the case
|
||||
// QT_LARGEFILE_SUPPORT is defined
|
||||
#if defined(_LARGEFILE64_SOURCE) && defined(_LARGEFILE_SOURCE) \
|
||||
&& (_FILE_OFFSET_BITS-0) != 64 && defined(QT_LARGEFILE_SUPPORT)
|
||||
&& defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS != 64 \
|
||||
&& defined(QT_LARGEFILE_SUPPORT)
|
||||
|
||||
#define QT_STATBUF struct stat64
|
||||
#define QT_FPOS_T fpos64_t
|
||||
|
|
Loading…
Add table
Reference in a new issue