mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 10:58:49 +08:00
tools/nxstyle: Back out part of last commit. Logic to avoid some false alarms was causing real style problems from being reported.
This commit is contained in:
parent
88130a996a
commit
de764af9aa
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue