diff options
author | montellese <montellese@xbmc.org> | 2014-05-10 10:05:06 +0200 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2014-05-17 09:53:06 +0200 |
commit | 9886ea3ec0cbdb198b31c8ece1b9a4100f4204b0 (patch) | |
tree | f0d307bfeb6c560a587c3dd14e15e5ace8e83b1d /lib/libUPnP | |
parent | 1717747423aaca70ea3eaefd5ccbec1e94c239d1 (diff) |
platinum: fix compile error in NptZip.cpp
Diffstat (limited to 'lib/libUPnP')
-rw-r--r-- | lib/libUPnP/Neptune/Source/Core/NptZip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libUPnP/Neptune/Source/Core/NptZip.cpp b/lib/libUPnP/Neptune/Source/Core/NptZip.cpp index 463a07f16f..bed1e559be 100644 --- a/lib/libUPnP/Neptune/Source/Core/NptZip.cpp +++ b/lib/libUPnP/Neptune/Source/Core/NptZip.cpp @@ -280,7 +280,7 @@ NPT_ZipFile::GetInputStream(Entry& entry, NPT_InputStreamReference& zip_stream, return NPT_ERROR_NOT_SUPPORTED; } #else - if (entry.m_CompressionMethod != NPT_ZIP_COMPRESSION_METHOD_NONE) { + if (entry.m_CompressionMethod != NPT_ZIP_FILE_COMPRESSION_METHOD_NONE) { return NPT_ERROR_NOT_SUPPORTED; } #endif |