Andrew Geissler | bffdb3e | 2020-08-21 16:13:29 -0500 | [diff] [blame] | 1 | From fd5251cc8b82ce7a5f907c5129969097d75609fe Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Thu, 13 Aug 2020 17:38:59 -0700 |
| 4 | Subject: [PATCH] genisoimage: Add missing extern definition |
| 5 | |
| 6 | Fixed build with gcc10 |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 10 | --- |
| 11 | genisoimage/genisoimage.h | 2 +- |
| 12 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 13 | |
| 14 | diff --git a/genisoimage/genisoimage.h b/genisoimage/genisoimage.h |
| 15 | index bbedfb0..82c859b 100644 |
| 16 | --- a/genisoimage/genisoimage.h |
| 17 | +++ b/genisoimage/genisoimage.h |
| 18 | @@ -376,7 +376,7 @@ extern int use_fileversion; |
| 19 | extern int split_SL_component; |
| 20 | extern int split_SL_field; |
| 21 | extern char *trans_tbl; |
| 22 | -char *outfile; |
| 23 | +extern char *outfile; |
| 24 | |
| 25 | #define JMAX 64 /* maximum Joliet file name length (spec) */ |
| 26 | #define JLONGMAX 103 /* out of spec Joliet file name length */ |
| 27 | -- |
| 28 | 2.28.0 |
| 29 | |