Skip to content
Snippets Groups Projects
Commit 0fd1c9f1 authored by Alan Modra's avatar Alan Modra
Browse files

* emultempl/spuelf.em (base_name): Correct backslash quoting.

parent cfa9d6d9
No related branches found
No related tags found
No related merge requests found
2007-07-03 Matthias Klose <doko@ubuntu.com>
* emultempl/spuelf.em (base_name): Correct backslash quoting.
2007-07-02 Alan Modra <amodra@bigpond.net.au>
* Makefile.in: Regenerate.
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment