diff options
author | bf <bf@FreeBSD.org> | 2011-03-12 03:01:27 +0800 |
---|---|---|
committer | bf <bf@FreeBSD.org> | 2011-03-12 03:01:27 +0800 |
commit | 39f2ad912195c3f721103197f27f407094de994c (patch) | |
tree | f3ae9d85a3b2cb8b8308a90ce7c9cd1651768be9 /archivers | |
parent | d28f3a221eef1daef3c3b906a626ba05d6432bdd (diff) | |
download | freebsd-ports-gnome-39f2ad912195c3f721103197f27f407094de994c.tar.gz freebsd-ports-gnome-39f2ad912195c3f721103197f27f407094de994c.tar.zst freebsd-ports-gnome-39f2ad912195c3f721103197f27f407094de994c.zip |
Remove a stale patch missed in the last commit
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp b/archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp deleted file mode 100644 index b861e1743faa..000000000000 --- a/archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp +++ /dev/null @@ -1,37 +0,0 @@ ---- CPP/7zip/Common/CWrappers.cpp.orig 2010-04-28 22:07:56.000000000 -0400 -+++ CPP/7zip/Common/CWrappers.cpp 2010-04-28 22:26:55.000000000 -0400 -@@ -164,13 +164,15 @@ - return 0; - } - --extern "C" static Byte Wrap_ReadByte(void *pp) -+extern "C" { -+static Byte Wrap_ReadByte(void *pp) - { - CByteInBufWrap *p = (CByteInBufWrap *)pp; - if (p->Cur != p->Lim) - return *p->Cur++; - return p->ReadByteFromNewBlock(); - } -+} - - CByteInBufWrap::CByteInBufWrap(): Buf(0) - { -@@ -210,7 +212,8 @@ - return Res; - } - --extern "C" static void Wrap_WriteByte(void *pp, Byte b) -+extern "C" { -+static void Wrap_WriteByte(void *pp, Byte b) - { - CByteOutBufWrap *p = (CByteOutBufWrap *)pp; - Byte *dest = p->Cur; -@@ -219,6 +222,7 @@ - if (dest == p->Lim) - p->Flush(); - } -+} - - CByteOutBufWrap::CByteOutBufWrap(): Buf(0) - { |