Minor formatting.

This commit is contained in:
David Reid
2020-03-17 07:14:01 +10:00
parent bb2a31d7a3
commit c9cc99141c
+2 -1
View File
@@ -6811,8 +6811,9 @@ MA_API ma_result ma_fopen(FILE** ppFile, const char* pFilePath, const char* pOpe
if (*ppFile == NULL) {
ma_result result = ma_result_from_errno(errno);
if (result == MA_SUCCESS) {
return MA_ERROR; /* Just a safety check to make sure we never ever return success when pFile == NULL. */
result = MA_ERROR; /* Just a safety check to make sure we never ever return success when pFile == NULL. */
}
return result;
}
#endif