From: Joel Brobecker Date: Mon, 2 Jun 2014 15:23:50 +0000 (-0700) Subject: Remove some trailing spaces in source.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=230cd560c88f323e2c3e0ed9186e134ef70369e0;p=binutils-gdb.git Remove some trailing spaces in source.c gdb/ChangeLog: * source.c (substitute_path_rule_matches): Remove trailing spaces. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e310659e964..aa56a106dbe 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-06-02 Joel Brobecker + + * source.c (substitute_path_rule_matches): Remove trailing spaces. + 2014-06-01 Ludovic Courtès * configure.ac: When Guile is available, check for the diff --git a/gdb/source.c b/gdb/source.c index c77a4f45c24..cb05939710e 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -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;