Browse Source

Fix not-c code

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1742)
FdaSilvaYY 7 years ago
parent
commit
10acff61e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/win32_init.c

+ 1 - 1
apps/win32_init.c

@@ -302,6 +302,6 @@ void win32_utf8argv(int *argc, char **argv[])
     return;
     return;
 }
 }
 #else
 #else
-void win32_utf8argv(int &argc, char **argv[])
+void win32_utf8argv(int *argc, char **argv[])
 {   return;   }
 {   return;   }
 #endif
 #endif