Description: Fix defines to correct values
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2021-09-05
--- a/src/common.h
+++ b/src/common.h
@@ -5,12 +5,12 @@
 
 #define _DEBUG false
 
-#ifndef _WIN32
-	typedef long int64;
-	typedef unsigned long uint64;
+#if defined(__arm__) || defined(__i386__)
+       typedef long long int64;
+       typedef unsigned long long uint64;
 #else
-	typedef long long int64;
-	typedef unsigned long long uint64;
+       typedef long int64;
+       typedef unsigned long uint64;
 #endif
 
 typedef int int32;
