Skip to content

Commit aaa1e01

Browse files
committed
Silence -Wshorten-64-to-32 warning
git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45403 379a1393-f5fb-40a0-bcee-ef074d9b53f7
1 parent 4c2fae1 commit aaa1e01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vice/src/userport/userport_wic64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2231,7 +2231,7 @@ static void do_command(void)
22312231
break;
22322232
case WIC64_CMD_REBOOT:
22332233
debug_log(CONS_COL_NO, 3, "%s: arming for reboot", __FUNCTION__);
2234-
wic64_sleep_cycles(3 * machine_get_cycles_per_second(), userport_wic64_reset); /* emulated a 3s reboot */
2234+
wic64_sleep_cycles(3 * (int)machine_get_cycles_per_second(), userport_wic64_reset); /* emulated a 3s reboot */
22352235
break;
22362236
case WIC64_CMD_SET_TRANSFER_TIMEOUT:
22372237
case WIC64_CMD_SET_REMOTE_TIMEOUT:

0 commit comments

Comments
 (0)