From: nasm-bot f. Y. Z. <r_...@ya...> - 2015-01-11 21:57:30
|
Commit-ID: 76ee8e609168a4f2b14f0432e854c52b2ff283e4 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=76ee8e609168a4f2b14f0432e854c52b2ff283e4 Author: Yuri Zaporozhets <r_...@ya...> AuthorDate: Sun, 11 Jan 2015 21:16:34 +0200 Committer: Yuri Zaporozhets <r_...@ya...> CommitDate: Sun, 11 Jan 2015 21:16:34 +0200 rdoff: increase EXIM_LABEL_MAX to 256 bytes Rationale: this is required for, e.g., FreePascal, which tends to generate very long labels for procedures/methods that do not fit into 64 bytes. This change does not introduce any incompatibilities. Signed-off-by: Yuri Zaporozhets <r_...@ya...> --- rdoff/rdoff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdoff/rdoff.h b/rdoff/rdoff.h index a161733..1451c6e 100644 --- a/rdoff/rdoff.h +++ b/rdoff/rdoff.h @@ -52,7 +52,7 @@ #define RDOFF2_SIGNATURE "RDOFF2" /* Maximum size of an import/export label (including trailing zero) */ -#define EXIM_LABEL_MAX 64 +#define EXIM_LABEL_MAX 256 /* Maximum size of library or module name (including trailing zero) */ #define MODLIB_NAME_MAX 128 |