Trailing whitespace

This commit is contained in:
skrll 2014-04-25 15:49:17 +00:00
parent 45fe388485
commit 4f4a9d7f28
1 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: vchi_bsd.c,v 1.7 2014/04/12 13:28:41 skrll Exp $
* $Id: vchi_bsd.c,v 1.8 2014/04/25 15:49:17 skrll Exp $
*/
#include <sys/types.h>
@ -281,7 +281,7 @@ struct thread_data {
static struct thread_data thread_slots[MAX_THREAD_DATA_SLOTS];
static void
static void
kthread_wrapper(void *data)
{
struct thread_data *slot;
@ -312,7 +312,7 @@ vchiq_thread_create(int (*threadfn)(void *data),
va_start(ap, namefmt);
vsnprintf(name, sizeof(name), namefmt, ap);
va_end(ap);
newt = NULL;
if (kthread_create(PRI_NONE, 0, NULL, kthread_wrapper, slot, &newt,
"%s", name) != 0) {