diff options
Diffstat (limited to 'ld/emultempl/spuelf.em')
-rw-r--r-- | ld/emultempl/spuelf.em | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/spuelf.em b/ld/emultempl/spuelf.em index 252b90f..05adeb8 100644 --- a/ld/emultempl/spuelf.em +++ b/ld/emultempl/spuelf.em @@ -270,7 +270,7 @@ base_name (const char *path) const char *file = strrchr (path, '/'); #ifdef HAVE_DOS_BASED_FILE_SYSTEM { - char *bslash = strrchr (path, '\\'); + char *bslash = strrchr (path, '\\\\'); if (file == NULL || (bslash != NULL && bslash > file)) file = bslash; |