]> mj.ucw.cz Git - libucw.git/commitdiff
Whitespace fixes.
authorMartin Mares <mj@ucw.cz>
Tue, 2 Sep 2008 20:07:36 +0000 (22:07 +0200)
committerMartin Mares <mj@ucw.cz>
Tue, 29 Mar 2011 10:55:05 +0000 (12:55 +0200)
ucw/fb-pool.c

index b55f09038da2d7417de285e5f41bf3694211b73a..e889c8e9459f79400262137590b66e68e66339d0 100644 (file)
@@ -40,7 +40,7 @@ fbpool_start(struct fbpool *b, struct mempool *mp, uns init_size)
 void *
 fbpool_end(struct fbpool *b)
 {
-  return mp_end(b->mp, b->fb.bptr); 
+  return mp_end(b->mp, b->fb.bptr);
 }
 
 void
@@ -60,7 +60,7 @@ int main(void)
   struct fbpool fb;
   byte *p;
   uns l;
-  
+
   mp = mp_new(64);
   fbpool_init(&fb);
   fbpool_start(&fb, mp, 16);
@@ -74,7 +74,7 @@ int main(void)
     if (memcmp(p + i * 7, "<hello>", 7))
       ASSERT(0);
   mp_delete(mp);
-  
+
   return 0;
 }