Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mem write odd #730

Merged
merged 9 commits into from
Aug 1, 2018
Prev Previous commit
Next Next commit
Add cast to avoid warning.
  • Loading branch information
donmr committed Jul 27, 2018
commit 44b33920f1f557fb39e6ff36d9abc60e3da46132
2 changes: 1 addition & 1 deletion src/gdbserver/semihosting.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ int do_semihosting (stlink_t *sl, uint32_t r0, uint32_t r1, uint32_t *ret) {
*ret = buffer_len;
return -1;
} else {
*ret = buffer_len - read_result;
*ret = buffer_len - (uint32_t)read_result;
}
}

Expand Down