aboutsummaryrefslogtreecommitdiff
path: root/sim/common/hw-device.c
diff options
context:
space:
mode:
Diffstat (limited to 'sim/common/hw-device.c')
-rw-r--r--sim/common/hw-device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/hw-device.c b/sim/common/hw-device.c
index a5dff43..66b2225 100644
--- a/sim/common/hw-device.c
+++ b/sim/common/hw-device.c
@@ -45,9 +45,9 @@ hw_ioctl (struct hw *me,
{
int status;
va_list ap;
- va_start(ap, request);
+ va_start (ap, request);
status = me->to_ioctl (me, request, ap);
- va_end(ap);
+ va_end (ap);
return status;
}