aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/unexmacosx.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ea4dde398a7..684de498522 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12014-09-21 David Caldwell <david@porkrind.org> (tiny change)
2
3 * unexmacosx.c (dump_it): Improve error message.
4
12014-09-18 Juri Linkov <juri@jurta.org> 52014-09-18 Juri Linkov <juri@jurta.org>
2 6
3 * image.c (imagemagick_load_image): Add delay to imagemagick metadata. 7 * image.c (imagemagick_load_image): Add delay to imagemagick metadata.
diff --git a/src/unexmacosx.c b/src/unexmacosx.c
index 8cd80a7a544..7d4762fdab2 100644
--- a/src/unexmacosx.c
+++ b/src/unexmacosx.c
@@ -1302,7 +1302,9 @@ dump_it (void)
1302 } 1302 }
1303 1303
1304 if (curr_header_offset > text_seg_lowest_offset) 1304 if (curr_header_offset > text_seg_lowest_offset)
1305 unexec_error ("not enough room for load commands for new __DATA segments"); 1305 unexec_error ("not enough room for load commands for new __DATA segments"
1306 " (increase headerpad_extra in configure.in to at least %lX)",
1307 num_unexec_regions * sizeof (struct segment_command));
1306 1308
1307 printf ("%ld unused bytes follow Mach-O header\n", 1309 printf ("%ld unused bytes follow Mach-O header\n",
1308 text_seg_lowest_offset - curr_header_offset); 1310 text_seg_lowest_offset - curr_header_offset);