mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
examples/qencoder/qe_main.c: Fix nxstyle errors
This commit is contained in:
parent
331fd61115
commit
017f5ed65c
1 changed files with 4 additions and 2 deletions
|
|
@ -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 <gnutt@nuttx.org>
|
||||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue