X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=sim%2Fcommon%2Fsim-abort.c;h=0c17186da71f77a8fe53e0b9b2042784374736f3;hb=bb0974456ed6d421e8d0b257f1e108c242326afc;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..0c17186da7 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-2015 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 (); }