Skip to content

Commit c3781af

Browse files
committed
Fix -Wshorten-64-to-32 warning
git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45400 379a1393-f5fb-40a0-bcee-ef074d9b53f7
1 parent 3ec1d86 commit c3781af

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
@@ -2222,7 +2222,7 @@ static void do_command(void)
22222222
send_reply_revised(CLIENT_ERROR, "", NULL, 0, NULL);
22232223
break;
22242224
case WIC64_CMD_REBOOT:
2225-
wic64_sleep_cycles(3 * machine_get_cycles_per_second()); /* emulated a 3s reboot */
2225+
wic64_sleep_cycles((int)(3 * machine_get_cycles_per_second())); /* emulated a 3s reboot */
22262226
userport_wic64_reset();
22272227
break;
22282228
case WIC64_CMD_SET_TRANSFER_TIMEOUT:

0 commit comments

Comments
 (0)