diff options
author | Brian Carlstrom <bdc@google.com> | 2010-10-07 16:32:02 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-10-07 16:32:02 -0700 |
commit | c4838afb343f1479d8239c60d51132fda66c1617 (patch) | |
tree | bd1eceabf8ca66927aac457e2ba6d58af57462b3 /cmds | |
parent | ecd31740a00f8fb07090209cd979257c38cbcc92 (diff) | |
parent | de6d1d889ebf15250c04a8ffc204b91af1e447e3 (diff) | |
download | frameworks_base-c4838afb343f1479d8239c60d51132fda66c1617.zip frameworks_base-c4838afb343f1479d8239c60d51132fda66c1617.tar.gz frameworks_base-c4838afb343f1479d8239c60d51132fda66c1617.tar.bz2 |
Merge "Move LOG_ALWAYS_FATAL to end of app_process"
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/app_process/app_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/app_process/app_main.cpp b/cmds/app_process/app_main.cpp index 7decf9a..0159edd 100644 --- a/cmds/app_process/app_main.cpp +++ b/cmds/app_process/app_main.cpp @@ -171,9 +171,9 @@ int main(int argc, const char* const argv[]) runtime.start(); } } else { - LOG_ALWAYS_FATAL("app_process: no class name or --zygote supplied."); fprintf(stderr, "Error: no class name or --zygote supplied.\n"); app_usage(); + LOG_ALWAYS_FATAL("app_process: no class name or --zygote supplied."); return 10; } |