diff options
author | Joel Brobecker <brobecker@adacore.com> | 2014-06-02 08:23:50 -0700 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2014-06-02 08:38:21 -0700 |
commit | 230cd560c88f323e2c3e0ed9186e134ef70369e0 (patch) | |
tree | 8d0a174364040787cb5763864fe27b2737895471 /gdb/source.c | |
parent | ec9a8169c363a80c51d9d603f00637bc4fe97b4d (diff) | |
download | gdb-230cd560c88f323e2c3e0ed9186e134ef70369e0.zip gdb-230cd560c88f323e2c3e0ed9186e134ef70369e0.tar.gz gdb-230cd560c88f323e2c3e0ed9186e134ef70369e0.tar.bz2 |
Remove some trailing spaces in source.c
gdb/ChangeLog:
* source.c (substitute_path_rule_matches): Remove trailing spaces.
Diffstat (limited to 'gdb/source.c')
-rw-r--r-- | gdb/source.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/source.c b/gdb/source.c index c77a4f4..cb05939 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; |