aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/unexcw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unexcw.c b/src/unexcw.c
index 762b996e4b6..dea9f6a7462 100644
--- a/src/unexcw.c
+++ b/src/unexcw.c
@@ -48,7 +48,7 @@ static exe_header_t *
48read_exe_header (int fd, exe_header_t * exe_header_buffer) 48read_exe_header (int fd, exe_header_t * exe_header_buffer)
49{ 49{
50 int i; 50 int i;
51 int ret; 51 int ret ATTRIBUTE_UNUSED;
52 52
53 assert (fd >= 0); 53 assert (fd >= 0);
54 assert (exe_header_buffer != 0); 54 assert (exe_header_buffer != 0);
@@ -111,7 +111,7 @@ fixup_executable (int fd)
111 exe_header_t exe_header_buffer; 111 exe_header_t exe_header_buffer;
112 exe_header_t *exe_header; 112 exe_header_t *exe_header;
113 int i; 113 int i;
114 int ret; 114 int ret ATTRIBUTE_UNUSED;
115 int found_data = 0; 115 int found_data = 0;
116 int found_bss = 0; 116 int found_bss = 0;
117 117
@@ -269,7 +269,7 @@ unexec (const char *outfile, const char *infile)
269 int fd_in; 269 int fd_in;
270 int fd_out; 270 int fd_out;
271 int ret; 271 int ret;
272 int ret2; 272 int ret2 ATTRIBUTE_UNUSED;
273 273
274 infile = add_exe_suffix_if_necessary (infile, infile_buffer); 274 infile = add_exe_suffix_if_necessary (infile, infile_buffer);
275 outfile = add_exe_suffix_if_necessary (outfile, outfile_buffer); 275 outfile = add_exe_suffix_if_necessary (outfile, outfile_buffer);