1
0
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:
2006-02-01 09:08:25 +00:00
parent 84fb96fe85
commit 80952253c2
5 changed files with 26 additions and 27 deletions

View File

@@ -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;