* ld.texinfo (Options): Fix example for --wrap.
authorAndreas Schwab <schwab@linux-m68k.org>
Mon, 1 Mar 2004 17:33:36 +0000 (17:33 +0000)
committerAndreas Schwab <schwab@linux-m68k.org>
Mon, 1 Mar 2004 17:33:36 +0000 (17:33 +0000)
ld/ChangeLog
ld/ld.texinfo

index f7772544b1e5c63525919773336c27962dce1344..81ebfa1d9ae0cb800ee252e59fbbe9d5c834bdad 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-01  Andreas Schwab  <schwab@suse.de>
+
+       * ld.texinfo (Options): Fix example for --wrap.
+
 2004-02-25  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * pe-dll.c (fill_edata): Check that exported_symbol_sections is
index 55f861e2e2549a187b97dddb39857ff32418644e..9710f4f48cd3701c1c83b4390cb0a00fd3f88327 100644 (file)
@@ -1702,9 +1702,9 @@ Here is a trivial example:
 
 @smallexample
 void *
-__wrap_malloc (int c)
+__wrap_malloc (size_t c)
 @{
-  printf ("malloc called with %ld\n", c);
+  printf ("malloc called with %zu\n", c);
   return __real_malloc (c);
 @}
 @end smallexample