Skip to content

fopen: fix conversion warning on 32-bit Android#11313

Closed
MarcelRaad wants to merge 1 commit intocurl:masterfrom
MarcelRaad:fchmod_android
Closed

fopen: fix conversion warning on 32-bit Android#11313
MarcelRaad wants to merge 1 commit intocurl:masterfrom
MarcelRaad:fchmod_android

Conversation

@MarcelRaad
Copy link
Copy Markdown
Member

When building for 32-bit ARM or x86 Android, st_mode is defined as unsigned int instead of mode_t, resulting in a -Wimplicit-int-conversion clang warning because mode_t is unsigned short. Add a cast to silence the warning.

Ref: https://android.googlesource.com/platform/bionic/+/refs/tags/ndk-r25c/libc/include/sys/stat.h#86

When building for 32-bit ARM or x86 Android, `st_mode` is defined as
`unsigned int` instead of `mode_t`, resulting in a
-Wimplicit-int-conversion clang warning because `mode_t` is
`unsigned short`. Add a cast to silence the warning.

Ref: https://android.googlesource.com/platform/bionic/+/refs/tags/ndk-r25c/libc/include/sys/stat.h#86
Closes curl#11313
@bagder bagder closed this in 06dc599 Jun 14, 2023
@MarcelRaad MarcelRaad deleted the fchmod_android branch June 14, 2023 10:57
bch pushed a commit to bch/curl that referenced this pull request Jul 19, 2023
When building for 32-bit ARM or x86 Android, `st_mode` is defined as
`unsigned int` instead of `mode_t`, resulting in a
-Wimplicit-int-conversion clang warning because `mode_t` is
`unsigned short`. Add a cast to silence the warning.

Ref: https://android.googlesource.com/platform/bionic/+/refs/tags/ndk-r25c/libc/include/sys/stat.h#86
Closes curl#11313
ptitSeb pushed a commit to wasix-org/curl that referenced this pull request Sep 25, 2023
When building for 32-bit ARM or x86 Android, `st_mode` is defined as
`unsigned int` instead of `mode_t`, resulting in a
-Wimplicit-int-conversion clang warning because `mode_t` is
`unsigned short`. Add a cast to silence the warning.

Ref: https://android.googlesource.com/platform/bionic/+/refs/tags/ndk-r25c/libc/include/sys/stat.h#86
Closes curl#11313
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants