From 0553a68a1a1a367cfa14d0e5db3b3663b30ae3b3 Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Thu, 12 Mar 2015 12:13:34 -0700 Subject: [PATCH] Fixed usage string for hello app hello should have been hello_main Signed-off-by: Mark Charlebois --- src/platforms/linux/hello/hello_start_linux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/linux/hello/hello_start_linux.cpp b/src/platforms/linux/hello/hello_start_linux.cpp index 0275662610..a7d21fa59c 100644 --- a/src/platforms/linux/hello/hello_start_linux.cpp +++ b/src/platforms/linux/hello/hello_start_linux.cpp @@ -95,6 +95,6 @@ int hello_main(int argc, char *argv[]) return 0; } - printf("usage: hello {start|stop|status}\n"); + printf("usage: hello_main {start|stop|status}\n"); return 1; }