diff options
Diffstat (limited to 'binutils/dllwrap.c')
-rw-r--r-- | binutils/dllwrap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/dllwrap.c b/binutils/dllwrap.c index 4e48f3e..293a491 100644 --- a/binutils/dllwrap.c +++ b/binutils/dllwrap.c @@ -1,6 +1,6 @@ /* dllwrap.c -- wrapper for DLLTOOL and GCC to generate PE style DLLs - Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2009 - Free Software Foundation, Inc. + Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2009, + 2011 Free Software Foundation, Inc. Contributed by Mumit Khan (khan@xraylith.wisc.edu). This file is part of GNU Binutils. @@ -414,7 +414,7 @@ run (const char *what, char *args) pid = pwait (pid, &wait_status, 0); if (pid == -1) { - warn ("wait: %s", strerror (errno)); + warn (_("pwait returns: %s"), strerror (errno)); retcode = 1; } else if (WIFSIGNALED (wait_status)) |