more bug fixes

This commit is contained in:
erwin coumans
2014-08-28 19:01:56 -07:00
parent 0dff61fbe0
commit dc16655d35
2 changed files with 10 additions and 3 deletions

View File

@@ -80,9 +80,9 @@ struct b3FileUtils
} else
{
#ifdef _WIN32
sprintf_s(path, maxPathLength,"");
sprintf_s(path, maxPathLength,"");
#else
sprintf(path, maxPathLength,"");
sprintf(path, "");
#endif
}
}