patch 7.4.1345
Problem:    A few more compiler warnings. (Axel Bender)
Solution:   Add type casts.
diff --git a/src/gui_w48.c b/src/gui_w48.c
index 5896dcd..7c08dec 100644
--- a/src/gui_w48.c
+++ b/src/gui_w48.c
@@ -2442,7 +2442,7 @@
 	info.fMask = MIIM_TYPE | MIIM_ID;
 	info.wID = item_id;
 	info.fType = MFT_STRING;
-	info.dwTypeData = item_text;
+	info.dwTypeData = (LPTSTR)item_text;
 	info.cch = (UINT)STRLEN(item_text);
 	InsertMenuItem(pmenu, item_id, FALSE, &info);
     }