make pretty using clang-format 10
This commit is contained in:
@@ -103,8 +103,7 @@ static int CheckArraySize(OS_Keylist list)
|
||||
}
|
||||
if (new_size) {
|
||||
/* Allocate more room for node pointer array */
|
||||
new_array = calloc((size_t)new_size,
|
||||
sizeof(struct Keylist_Node *));
|
||||
new_array = calloc((size_t)new_size, sizeof(struct Keylist_Node *));
|
||||
|
||||
/* See if we got the memory we wanted */
|
||||
if (!new_array) {
|
||||
@@ -453,7 +452,7 @@ int Keylist_Count(OS_Keylist list)
|
||||
cnt = list->count;
|
||||
}
|
||||
|
||||
return(cnt);
|
||||
return (cnt);
|
||||
}
|
||||
|
||||
/******************************************************************** */
|
||||
|
||||
@@ -118,7 +118,7 @@ unsigned long mstimer_remaining(struct mstimer *t)
|
||||
*/
|
||||
unsigned long mstimer_elapsed(struct mstimer *t)
|
||||
{
|
||||
return mstimer_now() - t->start;
|
||||
return mstimer_now() - t->start;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user