From: Richard M. Stallman Date: Fri, 23 Sep 1994 18:37:12 +0000 (+0000) Subject: (copy_text_and_data): Delete some printf's. X-Git-Tag: emacs-19.34~6829 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3f254763f0b3a243b023c57e0663e8c4efc0d586;p=emacs.git (copy_text_and_data): Delete some printf's. --- diff --git a/src/unexec.c b/src/unexec.c index 26e63fa55d8..d0ac5b4db2c 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -973,7 +973,6 @@ copy_text_and_data (new, a_out) #endif end = ptr + mcount_offset - EDATA_OFFSET; - printf ("Writing from %08x to %08x\n", ptr, end); write_segment (new, ptr, end); @@ -982,14 +981,12 @@ copy_text_and_data (new, a_out) proforma[2] = bss_end; /* becomes _minbrk */ proforma[3] = bss_end; /* becomes _curbrk */ - puts ("Writing 'args_proforma' (16 bytes)"); write (new, proforma, 16); temp_ptr = ptr; ptr = end + 16; end = temp_ptr + hdr.a_text; - printf ("Writing from %08x to %08x\n", ptr, end); write_segment (new, ptr, end); }