]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
MFC r357873:
authorDimitry Andric <dim@FreeBSD.org>
Tue, 18 Feb 2020 18:15:33 +0000 (18:15 +0000)
committerDimitry Andric <dim@FreeBSD.org>
Tue, 18 Feb 2020 18:15:33 +0000 (18:15 +0000)
commitd6e6398e002557bd8c7a520c1e45dd7c643d2209
tree1847df3e51c3d1ed3f7d758d63ce45b7c53b9c8c
parentc29c4db9f56cdad1ff75ec2deee51e5634fc23b4
MFC r357873:

Merge r357864 from the clang1000-import branch:

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

sbin/sconfig/sconfig.c:909:5: error: misleading indentation; statement is not part of the previous 'else' [-Werror,-Wmisleading-indentation]
                                exit (-1);
                                ^
sbin/sconfig/sconfig.c:907:6: note: previous statement is here
                        } else
                          ^

The intent was to group the exit() call with the previous fprintf()
call.
sbin/sconfig/sconfig.c