]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
MFC r357268:
authorDimitry Andric <dim@FreeBSD.org>
Tue, 4 Feb 2020 19:31:01 +0000 (19:31 +0000)
committerDimitry Andric <dim@FreeBSD.org>
Tue, 4 Feb 2020 19:31:01 +0000 (19:31 +0000)
commit086d58ed343b9e1c78d88b3d97eef9ec89036f13
tree10183fcaeb464cf9874b571e5aa3d40207c85c4f
parent40dbc337f3fe79e306455e97770fe294dac7a4b0
MFC r357268:

Merge r357260 from the clang1000-import branch:

Fix the following -Werror warning from clang 10.0.0 in procstat:

usr.bin/procstat/procstat_sigs.c:79:3: error: misleading indentation; statement is not part of the previous 'else' [-Werror,-Wmisleading-indentation]
                xo_close_container(name);
                ^
usr.bin/procstat/procstat_sigs.c:77:4: note: previous statement is here
        } else
          ^

The intent was to group the xo_close_container() call to the previous
snprintf() call.
usr.bin/procstat/procstat_sigs.c