[bug #57291] xargs --verbose adds incorrect trailing blank

2019-12-08 Thread Bernhard Voelker
Update of bug #57291 (project findutils): Status: Code Review => Fixed ___ Follow-up Comment #2: Pushed at: https://git.sv.gnu.org/cgit/findutils.git/commit/?id=6e55ad98b ___

[PATCH 0/2] Two minor maintenance changes

2019-12-08 Thread Bernhard Voelker
* [PATCH 1/2] maint: adjust exemption list for sc_trailing_blanks * [PATCH 2/2] parser.c: avoid "Condition 'nflags' is always false" in

[PATCH 1/2] maint: adjust exemption list for sc_trailing_blanks

2019-12-08 Thread Bernhard Voelker
* cfg.mk (exclude_file_name_regexp--sc_trailing_blank): Remove the regex part for 'find/testsuite/test_escapechars.golden' as that file was removed in commit v4.6.0-214-g3f6b28c4. --- cfg.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg.mk b/cfg.mk index 16d605ea..3e3bba9

[PATCH 2/2] parser.c: avoid "Condition 'nflags' is always false" in parse_version

2019-12-08 Thread Bernhard Voelker
* find/parser.c (parse_version): Remove 'nflags' variable. Found by cppcheck. --- find/parser.c | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/find/parser.c b/find/parser.c index 5770487b..f7fcaa02 100644 --- a/find/parser.c +++ b/find/parser.c @@ -2540,19 +2540,11