From de764af9aa5364d2dc02e09e377cbab230302d74 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 30 Oct 2018 08:36:30 -0600 Subject: [PATCH] tools/nxstyle: Back out part of last commit. Logic to avoid some false alarms was causing real style problems from being reported. --- tools/nxstyle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nxstyle.c b/tools/nxstyle.c index 089a252f33e..a29774e3ca4 100644 --- a/tools/nxstyle.c +++ b/tools/nxstyle.c @@ -145,7 +145,7 @@ int main(int argc, char **argv, char **envp) * follow another with no space separation. */ - if (line[n] != '}' && line[n] != '#') + if (line[n] != '}' /* && line[n] != '#' */) { fprintf(stderr, "Missing blank line after comment line. Found at line %d\n",