mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-15 02:29:10 +00:00
(svn r3512) Yet more whitespace fixes (mostly by Rubidium)
This commit is contained in:
2
queue.c
2
queue.c
@@ -182,7 +182,7 @@ static bool InsSort_Push(Queue* q, void* item, int priority)
|
||||
q->data.inssort.first = newnode;
|
||||
} else {
|
||||
InsSortNode* node = q->data.inssort.first;
|
||||
while( node != NULL ) {
|
||||
while (node != NULL) {
|
||||
if (node->next == NULL || node->next->priority >= priority) {
|
||||
newnode->next = node->next;
|
||||
node->next = newnode;
|
||||
|
Reference in New Issue
Block a user