summaryrefslogtreecommitdiff
path: root/desktop/test/deployment/executable_content/build/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/test/deployment/executable_content/build/hello.c')
-rw-r--r--desktop/test/deployment/executable_content/build/hello.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/test/deployment/executable_content/build/hello.c b/desktop/test/deployment/executable_content/build/hello.c
index 4b5b1ae47418..4af0b02ff888 100644
--- a/desktop/test/deployment/executable_content/build/hello.c
+++ b/desktop/test/deployment/executable_content/build/hello.c
@@ -35,9 +35,9 @@ int main(int argc , char** argv, char** envp)
{
//prevent warning about unused parameters
//we need to provide parameter names in C
- argc = argc;
- argv = argv;
- envp = envp;
+ (void)argc;
+ (void)argv;
+ (void)envp;
fprintf(stdout,"Hello world!\n");
return 0;