mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Merge pull request #38 from leper/dir_sep
Use the DIR_SEP macro to remove an ifdef.
This commit is contained in:
commit
e5f7f65b8a
1 changed files with 1 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue