diff --git a/rosapps/tests/hello/hello.c b/rosapps/tests/hello/hello.c index 30d79b073e6..bba959ab8f9 100644 --- a/rosapps/tests/hello/hello.c +++ b/rosapps/tests/hello/hello.c @@ -1,12 +1,8 @@ -#include #include #include int main(int argc, char* argv[]) { - WCHAR str[255]; - - wsprintfW(str, L"%04X", 0xab34); - printf("%S\n", str); + printf("Hello world\n"); return(0); }