Skip to content

Commit

Permalink
CMake: fix escaping in miniupnpc test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilka committed Feb 28, 2014
1 parent 6914eca commit 269e2ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeTests/FindMiniupnpc.cmake
Expand Up @@ -128,7 +128,7 @@ IF (NOT MINIUPNPC_VERSION_1_7_OR_HIGHER)
static struct IGDdatas data;
int main()
{
char externalIP[16] = "";
char externalIP[16] = \"\";
UPNP_GetExternalIPAddress(urls.controlURL, data.first.servicetype, externalIP);
return 0;
Expand All @@ -148,7 +148,7 @@ IF (NOT MINIUPNPC_VERSION_1_7_OR_HIGHER)
static struct IGDdatas data;
int main()
{
char externalIP[16] = "";
char externalIP[16] = \"\";
UPNP_GetExternalIPAddress(urls.controlURL, data.servicetype, externalIP);
return 0;
Expand Down

0 comments on commit 269e2ae

Please sign in to comment.