From 8ece706e06ba2ae2154f42c015ea8062ba0612f8 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Wed, 11 May 2005 17:03:00 +0000 Subject: [PATCH] revert the changes i accidently committed svn path=/trunk/; revision=15220 --- rosapps/tests/hello/hello.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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); }