From 1399c905f1fc877a4168d25b0e7147edf30905e9 Mon Sep 17 00:00:00 2001 From: Kelvin Lawson Date: Sat, 31 May 2014 20:43:08 +0100 Subject: [PATCH] atomsem.h: Whitespace change. --- kernel/atomsem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/atomsem.h b/kernel/atomsem.h index ae49365..930fafa 100755 --- a/kernel/atomsem.h +++ b/kernel/atomsem.h @@ -37,7 +37,7 @@ extern "C" { typedef struct atom_sem { ATOM_TCB * suspQ; /* Queue of threads suspended on this semaphore */ - uint8_t count; /* Semaphore count */ + uint8_t count; /* Semaphore count */ } ATOM_SEM; extern uint8_t atomSemCreate (ATOM_SEM *sem, uint8_t initial_count);