Fixing GetOS

This commit is contained in:
Rabia Alhaffar 2020-06-11 22:20:57 +03:00 committed by GitHub
parent abeece3bd9
commit 1b69e4505b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1192,6 +1192,8 @@ const char *GetOS(void)
return "Solaris"; return "Solaris";
#elif BSD #elif BSD
return "BSD"; return "BSD";
#else
return NULL:
#endif #endif
} }