Use 1u literal for flags/masks calculation

Changes `1 <<` and `1<<` to use `1u`.
This commit is contained in:
Susko3
2024-05-09 02:18:20 +02:00
committed by Sam Lantinga
parent 1944c009e9
commit 895586c928
4 changed files with 8 additions and 8 deletions

View File

@@ -333,7 +333,7 @@ extern DECLSPEC int SDLCALL SDL_RenamePath(const char *oldpath, const char *newp
extern DECLSPEC int SDLCALL SDL_GetPathInfo(const char *path, SDL_PathInfo *info);
#define SDL_GLOB_CASEINSENSITIVE (1 << 0)
#define SDL_GLOB_CASEINSENSITIVE (1u << 0)
/**
* Enumerate a directory tree, filtered by pattern, and return a list.