Skip to content
Snippets Groups Projects
Commit 2c40adf2 authored by James Almer's avatar James Almer
Browse files

Merge commit '233d50b2'


* commit '233d50b2':
  qt-faststart: Do not try to use fancy 64-bit seeking functions on mingw32ce

Merged-by: default avatarJames Almer <jamrial@gmail.com>
parents 30518a68 233d50b2
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,10 @@
#include <inttypes.h>
#include <string.h>
#ifdef __MINGW32__
#ifdef __MINGW32CE__
#define fseeko(x, y, z) fseek(x, y, z)
#define ftello(x) ftell(x)
#elif defined(__MINGW32__)
#undef fseeko
#define fseeko(x, y, z) fseeko64(x, y, z)
#undef ftello
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment