Change indentation to follow the updated standard.
Alot of mixed indentation. use 4 chars wide soft tabs.
This commit is contained in:
parent
9cc5420447
commit
f46ae1970b
51 changed files with 634 additions and 639 deletions
|
|
@ -43,7 +43,7 @@ void test_dequeue() {
|
|||
|
||||
for(i=0; i < 512; i++)
|
||||
assert(queue_dequeue(q) == &map[i]);
|
||||
|
||||
|
||||
tierdown();
|
||||
}
|
||||
|
||||
|
|
@ -57,7 +57,7 @@ void test_isempty() {
|
|||
|
||||
assert(queue_isempty(q));
|
||||
assert(queue_isempty(NULL));
|
||||
|
||||
|
||||
tierdown();
|
||||
}
|
||||
|
||||
|
|
@ -94,6 +94,6 @@ int main() {
|
|||
|
||||
if (q)
|
||||
queue_destroy(q);
|
||||
|
||||
return 0;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue