avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2129] Remove trailing whitespace that got accidentall


From: Joerg Wunsch
Subject: [avr-libc-commit] [2129] Remove trailing whitespace that got accidentally committed in r2123.
Date: Mon, 07 Jun 2010 15:39:11 +0000

Revision: 2129
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2129
Author:   joerg_wunsch
Date:     2010-06-07 15:39:10 +0000 (Mon, 07 Jun 2010)
Log Message:
-----------
Remove trailing whitespace that got accidentally committed in r2123.

Modified Paths:
--------------
    trunk/avr-libc/libc/stdlib/malloc.c

Modified: trunk/avr-libc/libc/stdlib/malloc.c
===================================================================
--- trunk/avr-libc/libc/stdlib/malloc.c 2010-06-07 15:21:40 UTC (rev 2128)
+++ trunk/avr-libc/libc/stdlib/malloc.c 2010-06-07 15:39:10 UTC (rev 2129)
@@ -167,14 +167,14 @@
         * But first we check if there is a free chunk at the end of
         * the allocation area. Brkval is corrected downwards then,
         * so the free chunk gets added to the new chunk.
-        * (fp2 still points to the last list entry from step 1)         
+        * (fp2 still points to the last list entry from step 1)
         */
        if (fp2 && (char*)fp2 + fp2->sz + sizeof(size_t) == __brkval) {
        __brkval = (char*)fp2;
                for (fp1 = __flp, fp2 = 0;
                     fp1->nx;
                 fp2 = fp1, fp1 = fp1->nx)
-                       {} 
+                       {}
                if (fp2)
                        fp2->nx = 0;
                else




reply via email to

[Prev in Thread] Current Thread [Next in Thread]