Revision: 45601
http://sourceforge.net/p/vice-emu/code/45601
Author: compyx
Date: 2025-03-29 06:38:01 +0000 (Sat, 29 Mar 2025)
Log Message:
-----------
Fix -Wshorten-64-to-32 warning
Modified Paths:
--------------
trunk/vice/src/monitor/monitor_binary.c
Modified: trunk/vice/src/monitor/monitor_binary.c
===================================================================
--- trunk/vice/src/monitor/monitor_binary.c 2025-03-28 18:21:24 UTC (rev 45600)
+++ trunk/vice/src/monitor/monitor_binary.c 2025-03-29 06:38:01 UTC (rev 45601)
@@ -1602,7 +1602,7 @@
++response_cursor;
}
- monitor_binary_response(response_size, e_MON_RESPONSE_CPUHISTORY_GET, e_MON_ERR_OK, command->request_id, response);
+ monitor_binary_response((uint32_t)response_size, e_MON_RESPONSE_CPUHISTORY_GET, e_MON_ERR_OK, command->request_id, response);
lib_free(templates);
lib_free(response);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|