[vlc-commits] json: mingw knows about int64_t

Rafaël Carré git at videolan.org
Thu Apr 11 16:07:27 CEST 2013


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Thu Apr 11 16:05:48 2013 +0200| [672dd79c402b5f88c469c92b64e8e382db4cab2e] | committer: Rafaël Carré

json: mingw knows about int64_t

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=672dd79c402b5f88c469c92b64e8e382db4cab2e
---

 modules/misc/webservices/json.h |    8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/modules/misc/webservices/json.h b/modules/misc/webservices/json.h
index 6933102..26bd249 100644
--- a/modules/misc/webservices/json.h
+++ b/modules/misc/webservices/json.h
@@ -36,12 +36,8 @@
 #endif
 
 #ifndef json_int_t
-   #ifndef _WIN32
-      #include <inttypes.h>
-      #define json_int_t int64_t
-   #else
-      #define json_int_t __int64
-   #endif
+#include <inttypes.h>
+#define json_int_t int64_t
 #endif
 
 #ifdef __cplusplus



More information about the vlc-commits mailing list