From: Martin Mares Date: Tue, 2 Sep 2008 20:07:36 +0000 (+0200) Subject: Whitespace fixes. X-Git-Tag: v5.0~74^2~41 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=3f2d709e6d02fc29a2874035d7dfc97bf0187e5b;p=libucw.git Whitespace fixes. --- diff --git a/ucw/fb-pool.c b/ucw/fb-pool.c index b55f0903..e889c8e9 100644 --- a/ucw/fb-pool.c +++ b/ucw/fb-pool.c @@ -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, "", 7)) ASSERT(0); mp_delete(mp); - + return 0; }