Make sure we use the correct style of filepath separator on Windows
('libs/ardour/file_source.cc' still to be investigated)
This commit is contained in:
@@ -170,7 +170,7 @@ PathScanner::run_scan_internal (vector<string *> *result,
|
||||
}
|
||||
closedir (dir);
|
||||
|
||||
} while ((limit < 0 || (nfound < limit)) && (thisdir = strtok (0, ":")));
|
||||
} while ((limit < 0 || (nfound < limit)) && (thisdir = strtok (0, G_SEARCHPATH_SEPARATOR_S)));
|
||||
|
||||
free (pathcopy);
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user