Permalink
Browse files
xz: Remove comma at end of enumerator list
Fixes warning seen when compiling software in c89 mode that uses liblzma.
- Loading branch information
Showing
with
16 additions
and 1 deletion.
- +5 −1 archivers/xz/Portfile
- +11 −0 archivers/xz/files/c89.patch
| @@ -0,0 +1,11 @@ | ||
| --- src/liblzma/api/lzma/base.h.orig 2016-12-30 05:08:20.000000000 -0600 | ||
| +++ src/liblzma/api/lzma/base.h 2018-03-23 21:42:31.000000000 -0500 | ||
| @@ -215,7 +215,7 @@ | ||
| * applications a little. | ||
| */ | ||
|
|
||
| - LZMA_PROG_ERROR = 11, | ||
| + LZMA_PROG_ERROR = 11 | ||
| /**< | ||
| * \brief Programming error | ||
| * |