tests: change variable address's type to uint64_t
diff --git a/tests/test.c b/tests/test.c
index 9573eef..d6ab076 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -125,7 +125,7 @@
 	};
 
 	csh handle;
-	size_t address = 0x1000;
+	uint64_t address = 0x1000;
 	//cs_insn insn[16];
 	cs_insn *insn;
 	int i;
diff --git a/tests/test_arm.c b/tests/test_arm.c
index 72319b0..9ad6d85 100644
--- a/tests/test_arm.c
+++ b/tests/test_arm.c
@@ -187,7 +187,7 @@
 		},
 	};
 
-	size_t address = 0x1000;
+	uint64_t address = 0x1000;
 	cs_insn *insn;
 	int i;
 
diff --git a/tests/test_arm64.c b/tests/test_arm64.c
index e9d32ce..4d797fb 100644
--- a/tests/test_arm64.c
+++ b/tests/test_arm64.c
@@ -146,7 +146,7 @@
 		},
 	};
 
-	size_t address = 0x2c;
+	uint64_t address = 0x2c;
 	//cs_insn insn[16];
 	cs_insn *insn;
 	int i;
diff --git a/tests/test_detail.c b/tests/test_detail.c
index 95b74ff..48bddfa 100644
--- a/tests/test_detail.c
+++ b/tests/test_detail.c
@@ -130,7 +130,7 @@
 	};
 
 	csh handle;
-	size_t address = 0x1000;
+	uint64_t address = 0x1000;
 	//cs_insn all_insn[16];
 	cs_insn *all_insn;
 	int i;
diff --git a/tests/test_mips.c b/tests/test_mips.c
index c46def5..b173f99 100644
--- a/tests/test_mips.c
+++ b/tests/test_mips.c
@@ -92,7 +92,7 @@
 		},
 	};
 
-	size_t address = 0x1000;
+	uint64_t address = 0x1000;
 	cs_insn *insn;
 	int i;
 
diff --git a/tests/test_x86.c b/tests/test_x86.c
index 1ad623d..d8ddf9f 100644
--- a/tests/test_x86.c
+++ b/tests/test_x86.c
@@ -152,7 +152,7 @@
 		},
 	};
 
-	size_t address = 0x1000;
+	uint64_t address = 0x1000;
 	//cs_insn insn[16];
 	cs_insn *insn;
 	int i;