X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2Fcommon%2Fsim-abort.c;h=1a6ab8431fcd9a06d4d3b3d5ce00b8ee42ab8940;hb=34b47c3828ca8e6d9dcddb2886744fb470e4276c;hp=995474c6977d85f67eb0b50bd320091e9448c3c7;hpb=9b254dd1ce46c19dde1dde5b8d1e22e862dfacce;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/common/sim-abort.c b/sim/common/sim-abort.c index 995474c697..1a6ab8431f 100644 --- a/sim/common/sim-abort.c +++ b/sim/common/sim-abort.c @@ -1,5 +1,6 @@ /* Generic simulator abort. - Copyright (C) 1997, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 1997, 2007, 2008, 2009, 2010, 2011 + Free Software Foundation, Inc. Contributed by Cygnus Support. This file is part of GDB, the GNU debugger. @@ -42,17 +43,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 (); }