Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Madman10K committed Jun 22, 2024
1 parent 5b02265 commit bb761fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C/CUntitledOpen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ size_t UOpen_getPathCount(const UOpen_Result* result)
const char* UOpen_getPathMultiple(const UOpen_Result* result, const size_t i)
{
char* res;
if (static_cast<UOpen_Status>(NFD_PathSet_GetPath(result->data, i, &res) != UOPEN_STATUS_SUCCESS))
if (static_cast<UOpen_Status>(NFD_PathSet_GetPath(result->data, i, &res)) != UOPEN_STATUS_SUCCESS)
return nullptr;
return res;
}
Expand Down

0 comments on commit bb761fb

Please sign in to comment.