summaryrefslogtreecommitdiff
path: root/nuttx/libc/stdlib
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-12 12:53:19 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-12 12:53:19 -0600
commit5fbbc21f13770cc35c3e61e3109c125d03f172eb (patch)
tree1c1278108c7fe21ea7534a274a6994ae4ed2b6cc /nuttx/libc/stdlib
parent387c4ace106479e457033b1717051ec55b8d673e (diff)
downloadpx4-nuttx-5fbbc21f13770cc35c3e61e3109c125d03f172eb.tar.gz
px4-nuttx-5fbbc21f13770cc35c3e61e3109c125d03f172eb.tar.bz2
px4-nuttx-5fbbc21f13770cc35c3e61e3109c125d03f172eb.zip
Make sure that there is one space between if and condition
Diffstat (limited to 'nuttx/libc/stdlib')
-rw-r--r--nuttx/libc/stdlib/lib_qsort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/stdlib/lib_qsort.c b/nuttx/libc/stdlib/lib_qsort.c
index 021e782d4..0579b1510 100644
--- a/nuttx/libc/stdlib/lib_qsort.c
+++ b/nuttx/libc/stdlib/lib_qsort.c
@@ -99,7 +99,7 @@ static inline char *med3(char *a, char *b, char *c,
static inline void swapfunc(char *a, char *b, int n, int swaptype)
{
- if(swaptype <= 1)
+ if (swaptype <= 1)
{
swapcode(long, a, b, n)
}