Remove some trailing spaces in source.c

gdb/ChangeLog:

        * source.c (substitute_path_rule_matches): Remove trailing spaces.
This commit is contained in:
Joel Brobecker
2014-06-02 08:23:50 -07:00
parent ec9a8169c3
commit 230cd560c8
2 changed files with 5 additions and 1 deletions

View File

@@ -952,7 +952,7 @@ substitute_path_rule_matches (const struct substitute_path_rule *rule,
/* Make sure that the region in the path that matches the substitution
rule is immediately followed by a directory separator (or the end of
string character). */
if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
return 0;