Changed spaces to tabs on synch.c

This commit is contained in:
Zachary Moore 2017-02-16 12:19:53 -05:00 committed by GitHub
parent b51f2a88de
commit 8eb6dc55df

View File

@ -381,7 +381,7 @@ locktest4(int nargs, char **args) {
donesem = sem_create("donesem", 0); donesem = sem_create("donesem", 0);
if (donesem == NULL) { if (donesem == NULL) {
lock_destroy(testlock); lock_destroy(testlock);
panic("lt1: sem_create failed\n"); panic("lt4: sem_create failed\n");
} }
int i, result; int i, result;
@ -389,7 +389,7 @@ locktest4(int nargs, char **args) {
kprintf_t("."); kprintf_t(".");
result = thread_fork("lt4", NULL, locktestthread2, NULL, i); result = thread_fork("lt4", NULL, locktestthread2, NULL, i);
if (result) { if (result) {
panic("lt1: thread_fork failed: %s\n", strerror(result)); panic("lt4: thread_fork failed: %s\n", strerror(result));
} }
} }