From b324596bac6eb3cc00cdf3aa034d13be42e8a4d7 Mon Sep 17 00:00:00 2001 From: Johanne Schock Date: Sun, 8 Mar 2020 20:08:47 +0100 Subject: [PATCH] Formatting --- tools/nxstyle.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/nxstyle.c b/tools/nxstyle.c index 2ef78dd4b2..cf3a378b8c 100644 --- a/tools/nxstyle.c +++ b/tools/nxstyle.c @@ -505,8 +505,8 @@ int main(int argc, char **argv, char **envp) bool bblank; /* Used to verify block comment terminator */ bool ppline; /* True: The next line the continuation of a pre-processor command */ bool bexternc; /* True: Within 'extern "C"' */ - int rhcomment; /* Indentation of Comment to the right of code */ - int prevrhcmt; /* Indentation of previous Comment to the right of code */ + int rhcomment; /* Indentation of Comment to the right of code */ + int prevrhcmt; /* Indentation of previous Comment to the right of code */ int lineno; /* Current line number */ int indent; /* Indentation level */ int ncomment; /* Comment nesting level on this line */ @@ -625,8 +625,8 @@ int main(int argc, char **argv, char **envp) bstring = false; /* True: Within a string */ ppline = false; /* True: Continuation of a pre-processor line */ bexternc = false; /* True: Within 'extern "C"' */ - rhcomment = 0; /* Indentation of Comment to the right of code */ - prevrhcmt = 0; /* Indentation of previous Comment to the right + rhcomment = 0; /* Indentation of Comment to the right of code */ + prevrhcmt = 0; /* Indentation of previous Comment to the right * of code */ lineno = 0; /* Current line number */ ncomment = 0; /* Comment nesting level on this line */ @@ -658,7 +658,7 @@ int main(int argc, char **argv, char **envp) * comment. */ - prevrhcmt = rhcomment; + prevrhcmt = rhcomment; if (ncomment <= 0) { rhcomment = 0;