X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2Fcommon%2Fsim-abort.c;h=76a0d145ff9666939181c63c87b067c6a0cd8b85;hb=a435742a7fb32f6320ce0e6074e2500e28378104;hp=2ce8e5e47562b3f60d25cee4cde05f6e88b2275f;hpb=dc3cf14f35b666eed7be13100ff58639450aa5cf;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/common/sim-abort.c b/sim/common/sim-abort.c index 2ce8e5e475..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, 2010 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 (); }