From 5f5e2bd766d75392e078ff4ad3d9cd9d6c0d3f2a Mon Sep 17 00:00:00 2001 From: Stathis Kamperis Date: Mon, 19 May 2008 22:45:11 +0300 Subject: [PATCH] Honour 80 cols per line limit --- buddy/test2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buddy/test2.c b/buddy/test2.c index bc0bfb6..a59418b 100644 --- a/buddy/test2.c +++ b/buddy/test2.c @@ -44,7 +44,8 @@ int main(int argc, char *argv[]) /* Allocate memory for columns */ for (i = 0; i < atoi(argv[1]); i++) { - if ((array[i] = mpool_alloc(mpool, atoi(argv[2]) * sizeof **array)) == NULL) { + if ((array[i] = mpool_alloc(mpool, + atoi(argv[2]) * sizeof **array)) == NULL) { fprintf(stderr, "mpool: no available block in pool\n"); mpool_destroy(mpool); exit(EXIT_FAILURE); -- 2.11.4.GIT