diff options
author | Carl-Emil Lagerstedt <carl-emil.lagerstedt@sonyericsson.com> | 2011-01-14 09:35:30 +0100 |
---|---|---|
committer | Johan Redestig <johan.redestig@sonyericsson.com> | 2011-04-11 14:17:54 +0200 |
commit | 9ab8190e418c9985ae1b92ad8fa2d20b2ed216e9 (patch) | |
tree | 851b29236c8eea76d0516141ed6eab9098aeb063 /init | |
parent | d37e0840d75ef133083181f9f95dff9aa46a1b16 (diff) | |
download | system_core-9ab8190e418c9985ae1b92ad8fa2d20b2ed216e9.zip system_core-9ab8190e418c9985ae1b92ad8fa2d20b2ed216e9.tar.gz system_core-9ab8190e418c9985ae1b92ad8fa2d20b2ed216e9.tar.bz2 |
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
Diffstat (limited to 'init')
-rwxr-xr-x | init/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init/init.c b/init/init.c index 75ffb5c..f2a1d27 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 |