unittests/lib/wrapper_test.c in trema-0.2.5 vs unittests/lib/wrapper_test.c in trema-0.2.6
- old
+ new
@@ -1,8 +1,8 @@
/*
* Unit tests for x-wrappers.
- *
+ *
* Author: Yasuhito Takamiya <yasuhito@gmail.com>
*
* Copyright (C) 2008-2012 NEC Corporation
*
* This program is free software; you can redistribute it and/or modify
@@ -155,12 +155,12 @@
static char *
test_xvasprintf_helper( const char *fmt, ... ) {
va_list ap;
- va_start(ap, fmt);
+ va_start(ap, fmt );
char *str = xvasprintf( fmt, ap );
- va_end(ap);
+ va_end( ap );
return str;
}
static void