Cleanup patch - Remove all trailing whitespace and fix a few typos.
[yaffs2.git] / yaffs_qsort.c
index 0429838de8e5b4cfc1dd5b78ed1056db83b8ca8c..474be9cea39967774053d3e9756d888da07e304d 100644 (file)
@@ -50,7 +50,7 @@
 static __inline void
 swapfunc(char *a, char *b, int n, int swaptype)
 {
-       if (swaptype <= 1) 
+       if (swaptype <= 1)
                swapcode(long, a, b, n)
        else
                swapcode(char, a, b, n)
@@ -137,7 +137,7 @@ loop:       SWAPINIT(a, es);
        }
        if (swap_cnt == 0) {  /* Switch to insertion sort */
                for (pm = (char *) a + es; pm < (char *) a + n * es; pm += es)
-                       for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0; 
+                       for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0;
                             pl -= es)
                                swap(pl, pl - es);
                return;
@@ -150,7 +150,7 @@ loop:       SWAPINIT(a, es);
        vecswap(pb, pn - r, r);
        if ((r = pb - pa) > es)
                yaffs_qsort(a, r / es, es, cmp);
-       if ((r = pd - pc) > es) { 
+       if ((r = pd - pc) > es) {
                /* Iterate rather than recurse to save stack space */
                a = pn - r;
                n = r / es;