tests: mutex: fix code style

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-06-16 22:04:37 -04:00 committed by Kumar Gala
commit fbe4f16bc7
2 changed files with 27 additions and 27 deletions

View file

@ -244,10 +244,10 @@ void RegressionTask(void)
{ {
int rv; int rv;
int i; int i;
struct k_mutex *mutexes[4] = {&Mutex1, &Mutex2, &Mutex3, &Mutex4}; struct k_mutex *mutexes[4] = { &Mutex1, &Mutex2, &Mutex3, &Mutex4 };
struct k_mutex *giveMutex[3] = {&Mutex3, &Mutex2, &Mutex1}; struct k_mutex *giveMutex[3] = { &Mutex3, &Mutex2, &Mutex1 };
int priority[4] = {9, 8, 7, 5}; int priority[4] = { 9, 8, 7, 5 };
int dropPri[3] = {8, 8, 9}; int dropPri[3] = { 8, 8, 9 };
TC_START("Test kernel Mutex API"); TC_START("Test kernel Mutex API");