Skip to content

Commit

Permalink
Silence -Wshorten-64-to-32 warning
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45382 379a1393-f5fb-40a0-bcee-ef074d9b53f7
  • Loading branch information
Compyx committed Nov 29, 2024
1 parent 11e841c commit 8759211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vice/src/userport/userport_wic64.c
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ static void send_reply_revised(const uint8_t rcode, const char *msg, const uint8
stage_dummy = 1;
bsr = stage_retcode = 1;
bsl = stage_length = 2 + offs;
bsd = stage_data = len;
bsd = stage_data = (int)len;
handshake_flag2();
} else {
/* legacy protocol */
Expand Down

0 comments on commit 8759211

Please sign in to comment.