From 3b55005f0092c6e5b7b6ddce39c066310b2d17a9 Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Fri, 1 Feb 2013 21:53:33 +0100 Subject: [PATCH] cosmetic touches --- main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.c b/main.c index 43d233f..caece1a 100644 --- a/main.c +++ b/main.c @@ -108,12 +108,12 @@ void Post_dealloc(Post *self) { Post *Post_alloc() { - Post *new = malloc(sizeof(Post)); + Post *new = malloc(sizeof(Post)); new->author = malloc(255); - new->body = malloc(2048); + new->body = malloc(2048); - new->init = Block_copy( ^ { Post_init(new); }); - new->printf = Block_copy( ^ { Post_printf(new); }); + new->init = Block_copy( ^ { Post_init(new); }); + new->printf = Block_copy( ^ { Post_printf(new); }); new->dealloc = Block_copy( ^ { Post_dealloc(new); }); return new;