Discovered and fixed a misplaced macro

This commit is contained in:
2023-07-26 01:44:15 +10:00
parent fa175203c9
commit 3b7d2be87e
2 changed files with 1 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ void Toy_freeDriveSystem() {
Toy_freeLiteralDictionary(&driveDictionary);
}
TOY_API void Toy_setDrivePath(char* drive, char* path) {
void Toy_setDrivePath(char* drive, char* path) {
Toy_Literal driveLiteral = TOY_TO_STRING_LITERAL(Toy_createRefString(drive));
Toy_Literal pathLiteral = TOY_TO_STRING_LITERAL(Toy_createRefString(path));