Fixed formatting

This commit is contained in:
Nathan Moinvaziri 2018-09-10 08:52:45 -07:00 committed by GitHub
parent 0457003448
commit 09ddae6514
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ int32_t mz_path_combine(char *path, const char *join, int32_t max_path)
if (path_len == 0)
{
strncpy(path, join, max_path - 1);
path[max_path - 1] = '\0';
path[max_path - 1] = 0;
}
else
{