From 91710dd48fff4c3096d050817d77b8cf769a9387 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Wed, 4 Apr 2007 17:41:28 +0000 Subject: [PATCH] Minor adjustment to coding style. --- examples/multi-threading/multi-threading.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/multi-threading/multi-threading.c b/examples/multi-threading/multi-threading.c index b97f09c6d..574968f42 100644 --- a/examples/multi-threading/multi-threading.c +++ b/examples/multi-threading/multi-threading.c @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * $Id: multi-threading.c,v 1.1 2007/04/03 20:13:28 oliverschmidt Exp $ + * $Id: multi-threading.c,v 1.2 2007/04/04 17:41:28 oliverschmidt Exp $ */ /** @@ -74,7 +74,7 @@ thread_func(char *str, int len) sprintf(buf, "%s\n", str + len); mt_yield(); - if (len) { + if(len) { thread_func(str, len - 1); mt_yield(); }