fix warning
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-09-27 07:57:26 +09:00
commit 30ece76ff4

View file

@ -19,7 +19,9 @@ typedef struct dir {
void* MwDirectoryOpen(const char* path) {
dir_t* dir = malloc(sizeof(*dir));
#ifdef _WIN32
char* p;
#endif
if(!dir) {
printf("Out Of Memory\n");
return NULL;