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)
This commit is contained in:
FdaSilvaYY 2016-10-19 00:01:42 +02:00 committed by Richard Levitte
parent c0dba2cca4
commit 10acff61e1

View file

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