From 46719944c52283853b82d4fc76b6658b3f8831ca Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Tue, 15 Apr 2003 15:27:20 +0000 Subject: merge from gcc --- libiberty/getopt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libiberty/getopt.c') diff --git a/libiberty/getopt.c b/libiberty/getopt.c index 2402a39e2f..a1e482763c 100644 --- a/libiberty/getopt.c +++ b/libiberty/getopt.c @@ -333,8 +333,8 @@ exchange (argv) nonoption_flags_len = nonoption_flags_max_len = 0; else { - memset (__mempcpy (new_str, __getopt_nonoption_flags, - nonoption_flags_max_len), + memset (mempcpy (new_str, __getopt_nonoption_flags, + nonoption_flags_max_len), '\0', top + 1 - nonoption_flags_max_len); nonoption_flags_max_len = top + 1; __getopt_nonoption_flags = new_str; @@ -444,7 +444,7 @@ _getopt_initialize (argc, argv, optstring) if (__getopt_nonoption_flags == NULL) nonoption_flags_max_len = -1; else - memset (__mempcpy (__getopt_nonoption_flags, orig_str, len), + memset (mempcpy (__getopt_nonoption_flags, orig_str, len), '\0', nonoption_flags_max_len - len); } } -- cgit v1.2.1