This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
commit 017f5ed65c72b1dfcb2fb32c93424c37ecb6bd12 Author: Nathan Hartman <[email protected]> AuthorDate: Fri Mar 19 16:08:04 2021 -0400 examples/qencoder/qe_main.c: Fix nxstyle errors --- examples/qencoder/qe_main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/qencoder/qe_main.c b/examples/qencoder/qe_main.c index 8306a4d..27cb0f8 100644 --- a/examples/qencoder/qe_main.c +++ b/examples/qencoder/qe_main.c @@ -1,5 +1,5 @@ /**************************************************************************** - * examples/qe/qe_main.c + * apps/examples/qencoder/qe_main.c * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt <[email protected]> @@ -279,7 +279,9 @@ int main(int argc, FAR char *argv[]) */ printf("qe_main: Number of samples: %u\n", g_qeexample.nloops); - for (nloops = 0; !g_qeexample.nloops || nloops < g_qeexample.nloops; nloops++) + for (nloops = 0; + !g_qeexample.nloops || nloops < g_qeexample.nloops; + nloops++) { /* Flush any output before the loop entered or from the previous pass * through the loop.
