sim: fix func call style (space before paren)

Committed this as obvious:
	-foo(...);
	+foo (...);

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2011-05-11 20:02:42 +00:00
parent 1f84b6196b
commit 34b47c3828
24 changed files with 261 additions and 252 deletions

View file

@ -43,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 ();
}