nxtbgthng / OAuth2Client

Client library for OAuth2 (currently built against draft 10 of the OAuth2 spec)
855 stars 217 forks source link

Fix warnings with OSStatus being incorrectly formatted #224

Closed sirnacnud closed 6 years ago

sirnacnud commented 6 years ago

OSStatus is defined as SInt32 so it should be formatted as a signed integer. Specifying “zd” expects the type to be size_t.

Gernot commented 6 years ago

Sounds reasonable. Merged :-) Thanks!