Use the DIR_SEP macro to remove an ifdef.

This commit is contained in:
Georg Kilzer 2018-02-04 05:58:58 +01:00
parent 7fdb9fdb0e
commit 237772bb40

View file

@ -170,14 +170,9 @@ file_basename(const char *file)
{
char *ptr;
if ((ptr = strrchr(file, '/')) != NULL) {
if ((ptr = strrchr(file, DIR_SEP)) != NULL) {
return ptr + 1;
}
#ifdef _WIN32
if ((ptr = strrchr(file, '\\')) != NULL) {
return ptr + 1;
}
#endif
return file;
}