From 9ab8190e418c9985ae1b92ad8fa2d20b2ed216e9 Mon Sep 17 00:00:00 2001 From: Carl-Emil Lagerstedt Date: Fri, 14 Jan 2011 09:35:30 +0100 Subject: [PATCH] Fix build error in init when building with bootchart There was a build error in init.c if you enabled bootchart, this should probably be shipped upstream if not fixed already. Change-Id: Iea3451c3e15d5cac00c5420d99bfce9a950aaaac --- init/init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init/init.c b/init/init.c index 75ffb5c7a..f2a1d274b 100755 --- a/init/init.c +++ b/init/init.c @@ -646,6 +646,8 @@ static int bootchart_init_action(int nargs, char **args) } else { NOTICE("bootcharting ignored\n"); } + + return 0; } #endif