Squash compiler wng about signed/unsigned mismatch.
diff --git a/Python/frozen.c b/Python/frozen.c
index e40d5d9..3b0c372 100644
--- a/Python/frozen.c
+++ b/Python/frozen.c
@@ -21,7 +21,7 @@
 	0,0,0,0,
 };
 
-#define SIZE sizeof(M___hello__)
+#define SIZE (int)sizeof(M___hello__)
 
 static struct _frozen _PyImport_FrozenModules[] = {
 	/* Test module */