Commit 2c40adf2 authored by James Almer's avatar James Almer

Merge commit '233d50b2'

* commit '233d50b2':
  qt-faststart: Do not try to use fancy 64-bit seeking functions on mingw32ce
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 30518a68 233d50b2
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment