X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2Fcommon%2Fsim-abort.c;h=76a0d145ff9666939181c63c87b067c6a0cd8b85;hb=a435742a7fb32f6320ce0e6074e2500e28378104;hp=06ae109a5b038f3bae5360b37ec806fd3206d312;hpb=e4d013fc0f3df3200be2dca48ed2e330e8a4ddf9;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/common/sim-abort.c b/sim/common/sim-abort.c index 06ae109a5b..76a0d145ff 100644 --- a/sim/common/sim-abort.c +++ b/sim/common/sim-abort.c @@ -1,5 +1,5 @@ /* Generic simulator abort. - Copyright (C) 1997, 2007, 2008, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-2020 Free Software Foundation, Inc. Contributed by Cygnus Support. This file is part of GDB, the GNU debugger. @@ -42,17 +42,17 @@ sim_engine_abort (SIM_DESC sd, if (sd != NULL) { va_list ap; - va_start(ap, fmt); + va_start (ap, fmt); sim_io_evprintf (sd, fmt, ap); - va_end(ap); + va_end (ap); sim_io_error (sd, "\n"); } else { va_list ap; - va_start(ap, fmt); + va_start (ap, fmt); vfprintf (stderr, fmt, ap); - va_end(ap); + va_end (ap); fprintf (stderr, "\n"); abort (); }