From 6349d357cd8a33c4aafb49d06b7f729c4b3338f5 Mon Sep 17 00:00:00 2001
From: Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
Date: Thu, 3 Apr 2014 18:29:04 +0200
Subject: [PATCH] examples/hello-world: return instead of busy loop.

---
 examples/hello-world/main.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/examples/hello-world/main.c b/examples/hello-world/main.c
index c55bdfc660..fefbce0348 100644
--- a/examples/hello-world/main.c
+++ b/examples/hello-world/main.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013 Freie Universität Berlin
+ * Copyright (C) 2014 Freie Universität Berlin
  *
  * This file is subject to the terms and conditions of the GNU Lesser General
  * Public License. See the file LICENSE in the top level directory for more
@@ -14,6 +14,7 @@
  * @brief       Hello World application
  *
  * @author      Kaspar Schleiser <kaspar@schleiser.de>
+ * @author      Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
  *
  * @}
  */
@@ -22,7 +23,6 @@
 
 int main(void)
 {
-    puts("Hello World!\n");
-
-    while (1);
+    puts("Hello World!");
+    return 0;
 }
-- 
GitLab