Browse Source

fixed mingw build error

pull/304/head
orignal 9 years ago
parent
commit
c1e2ee32b4
  1. 2
      Win32/Win32Service.cpp

2
Win32/Win32Service.cpp

@ -76,7 +76,7 @@ I2PService::I2PService(PSTR pszServiceName, @@ -76,7 +76,7 @@ I2PService::I2PService(PSTR pszServiceName,
BOOL fCanShutdown,
BOOL fCanPauseContinue)
{
m_name = (pszServiceName == NULL) ? "" : pszServiceName;
m_name = (pszServiceName == NULL) ? (PSTR)"" : pszServiceName;
m_statusHandle = NULL;

Loading…
Cancel
Save