aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/stdio-impl.h2
-rw-r--r--src/unexw32.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/stdio-impl.h b/lib/stdio-impl.h
index 1972a33ab13..766d6936590 100644
--- a/lib/stdio-impl.h
+++ b/lib/stdio-impl.h
@@ -26,9 +26,7 @@
26# include <sys/param.h> 26# include <sys/param.h>
27#endif 27#endif
28 28
29#ifndef __MINGW32__
30#include <errno.h> /* For detecting Plan9. */ 29#include <errno.h> /* For detecting Plan9. */
31#endif
32 30
33#if defined __sferror || defined __DragonFly__ || defined __ANDROID__ 31#if defined __sferror || defined __DragonFly__ || defined __ANDROID__
34 /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Android */ 32 /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Android */
diff --git a/src/unexw32.c b/src/unexw32.c
index f4183dc976f..54224858a85 100644
--- a/src/unexw32.c
+++ b/src/unexw32.c
@@ -465,6 +465,7 @@ get_section_info (file_data *p_infile)
465 bss_start = min (bss_start, bss_start_static); 465 bss_start = min (bss_start, bss_start_static);
466 bss_size = max (my_endbss, my_endbss_static) - bss_start; 466 bss_size = max (my_endbss, my_endbss_static) - bss_start;
467 bss_section_static = 0; 467 bss_section_static = 0;
468 extra_bss_size = max (extra_bss_size, extra_bss_size_static);
468 extra_bss_size_static = 0; 469 extra_bss_size_static = 0;
469 } 470 }
470} 471}