From 828675483a4a8e7a09a1bb6a0190a2dadfc0cee6 Mon Sep 17 00:00:00 2001
From: Lane Roathe <lroathe@gmail.com>
Date: Sun, 17 Nov 2019 11:42:16 -0800
Subject: [PATCH] Silence warning about 64 to 32 bit conversion

---
 asm.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/asm.cpp b/asm.cpp
index a0292d4..1b1cf75 100644
--- a/asm.cpp
+++ b/asm.cpp
@@ -1786,7 +1786,7 @@ void CLASS::process(void)
 			if (x == 0)
 			{
 				value &= 0xFFFFFFFF;
-				line.expr_value = value;
+				line.expr_value = (uint32_t)value;
 			}
 			else
 			{