-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix stlink on mingw64 #569
Conversation
Great, thanks for the improvement! |
Sorry reverted in PR #573 |
Hmmm... That's unfortunate... Isn't there a platform independent formatting? We could cast it to something that works everywhere. |
yes, and https://busybox.net/~landley/c99-draft.html#7.19.6
|
Would you accept a PR turning formatting warnings into errors on Travis and casting all size_t formatting to unsigned long long before formatting? |
Sure, just make a proposal!
…Sent from my Nokia 3210
On 15 Mar 2017, at 23:20, Oliver Schneider ***@***.***> wrote:
Would you accept a PR turning formatting warnings into errors on Travis and casting all size_t formatting to unsigned long long before formatting?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub, or mute the thread.
|
%zx
gets printed aszx
. Just using%x
suffices in the cases in this PR.This fixes stlink for us.