From cd1ef4d64e16cf74baf43255059eeffb150f3108 Mon Sep 17 00:00:00 2001 From: Unto Sten Date: Fri, 10 May 2019 19:47:07 +0300 Subject: [PATCH] another style fix --- libselinux/utils/matchpathcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libselinux/utils/matchpathcon.c b/libselinux/utils/matchpathcon.c index 9756d7d9..eb39a188 100644 --- a/libselinux/utils/matchpathcon.c +++ b/libselinux/utils/matchpathcon.c @@ -25,7 +25,7 @@ static int printmatchpathcon(const char *path, int header, int mode) int rc = matchpathcon(path, mode, &buf); if (rc < 0) { if (errno == ENOENT) { - buf=strdup("<>"); + buf = strdup("<>"); } else { fprintf(stderr, "matchpathcon(%s) failed: %s\n", path, strerror(errno));