diff options
author | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-09-30 16:33:46 +0000 |
---|---|---|
committer | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-09-30 16:33:46 +0000 |
commit | 5c816642cbb413ab3823629bcfcf9f3c92005c85 (patch) | |
tree | 5bd8990996cb5fdb81f8591b009123de2b3e576b /archivers/macutils | |
parent | a3e44848b968682416dd7fb36febac8aba35da82 (diff) |
- fix build on gcc 4.1
PR: 103750
Submitted by: trasz <trasz@pin.if.uz.zgora.pl>
Approved by: novel (mentor, implicit)
Notes
Notes:
svn path=/head/; revision=174194
Diffstat (limited to 'archivers/macutils')
-rw-r--r-- | archivers/macutils/files/patch-lzh.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/archivers/macutils/files/patch-lzh.c b/archivers/macutils/files/patch-lzh.c new file mode 100644 index 000000000000..7580345bc94b --- /dev/null +++ b/archivers/macutils/files/patch-lzh.c @@ -0,0 +1,22 @@ +--- macunpack/lzh.c.orig Thu Sep 28 13:10:04 2006 ++++ macunpack/lzh.c Thu Sep 28 13:11:27 2006 +@@ -40,13 +40,13 @@ + {"-lzs-", lzs} + }; + static char *lzh_archive; +-static char *lzh_pointer; +-static char *lzh_data; +-static char *lzh_finfo; +-static int lzh_fsize; +-static int lzh_kind; ++char *lzh_pointer; ++char *lzh_data; ++char *lzh_finfo; ++int lzh_fsize; ++int lzh_kind; + static int oldsize; +-static char *lzh_file; ++char *lzh_file; + static int lzh_filesize; + static char *lzh_current; + static char *tmp_out_ptr; |