tools/lzma-old fix compile issues (patch from #10253)
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 21 Oct 2011 12:52:49 +0000 (12:52 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 21 Oct 2011 12:52:49 +0000 (12:52 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28502 3c298f89-4303-0410-b956-a3cf2f4a3e73

tools/lzma-old/patches/100-lzma_zlib.patch

index 7436cfe..32d1263 100644 (file)
 +      UInt64 m_offset;
 +};
 +
-+ZEXTERN int ZEXPORT compress2 OF((Bytef *dest,   uLongf *destLen,
++ZEXTERN int ZEXPORT compress2 (Bytef *dest,   uLongf *destLen,
 +                                  const Bytef *source, uLong sourceLen,
-+                                  int level))
++                                  int level)
 +{
 +      CInMemoryStream *inStreamSpec = new CInMemoryStream(source, sourceLen);
 +      CMyComPtr<ISequentialInStream> inStream = inStreamSpec;
 +      return Z_OK;
 +}
 +
-+ZEXTERN int ZEXPORT uncompress OF((Bytef *dest,   uLongf *destLen,
-+                                   const Bytef *source, uLong sourceLen))
++ZEXTERN int ZEXPORT uncompress (Bytef *dest,   uLongf *destLen,
++                                   const Bytef *source, uLong sourceLen)
 +{
 +      CInMemoryStream *inStreamSpec = new CInMemoryStream(source, sourceLen);
 +      CMyComPtr<ISequentialInStream> inStream = inStreamSpec;
This page took 0.030975 seconds and 4 git commands to generate.