diff options
author | Pierre Muller <muller@sourceware.org> | 2011-03-16 17:59:03 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2011-03-16 17:59:03 +0000 |
commit | b37520b6265d8479f34d8ffa36ec1c88d4360734 (patch) | |
tree | 6084ca12620edce4c760a0ca52022dd94f506ad9 /gdb/windows-nat.c | |
parent | b08ee6a2eea46111d762692dc45fbe0194f51c2c (diff) | |
download | gdb-b37520b6265d8479f34d8ffa36ec1c88d4360734.zip gdb-b37520b6265d8479f34d8ffa36ec1c88d4360734.tar.gz gdb-b37520b6265d8479f34d8ffa36ec1c88d4360734.tar.bz2 |
Fix ARI warnings about new lines at the end of messages, which
are unneeded as there is a new line added at the end of the message
automatically.
* darwin-nat.c (darwin_stop_inferior): Ditto.
* dec-thread.c (dec_thread_get_ada_task_ptid): Ditto.
* dfp.c (decimal_to_number): Ditto.
* exec.c (print_section_info): Ditto.
* i386-darwin-nat.c (darwin_set_sstep): Ditto.
* osdata.c (get_osdata): Ditto.
* record.c (bfdcore_write): Ditto.
* remote-mips.c (mips_readchar): Ditto.
* remote.c (read_ptid): Ditto.
* ser-mingw.c (ser_windows_raw): Ditto.
* tracepoint.c (add_local_symbols): Ditto.
* windows-nat.c (fake_create_process): Ditto.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 86f9242..fd8ce10 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -1289,7 +1289,7 @@ fake_create_process (void) open_process_used = 1; else { - error (_("OpenProcess call failed, GetLastError = %lud\n"), + error (_("OpenProcess call failed, GetLastError = %lud"), GetLastError ()); /* We can not debug anything in that case. */ } |