From f47242cc94bddb2fe7b32fa0d806a92f631cec52 Mon Sep 17 00:00:00 2001 From: Tom Hicks Date: Thu, 12 Oct 2006 13:24:27 -0400 Subject: [PATCH] Fixed a syntax error that tried to assign a pointer to an object to an object ~Tom --- src/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list.h b/src/list.h index 2417351..269a8fa 100644 --- a/src/list.h +++ b/src/list.h @@ -789,7 +789,7 @@ namespace OpenArena{ else { int len = 1; - listNode temp = head->next; + listNode* temp = head->next; while (temp != NULL) { temp = temp->next;