summaryrefslogtreecommitdiff
path: root/src/heretic/p_setup.c
diff options
context:
space:
mode:
authorSimon Howard2008-09-26 22:46:05 +0000
committerSimon Howard2008-09-26 22:46:05 +0000
commit8eba353126080a0fd16586b8a23aab6fe384afa4 (patch)
tree7cc7e23114c8aa4a805ba82bc4868dffd00e40fa /src/heretic/p_setup.c
parentaf2add1cbef05bf05fe6a59f84975caabe0779c0 (diff)
downloadchocolate-doom-8eba353126080a0fd16586b8a23aab6fe384afa4.tar.gz
chocolate-doom-8eba353126080a0fd16586b8a23aab6fe384afa4.tar.bz2
chocolate-doom-8eba353126080a0fd16586b8a23aab6fe384afa4.zip
Fix compile error.
Subversion-branch: /branches/raven-branch Subversion-revision: 1290
Diffstat (limited to 'src/heretic/p_setup.c')
-rw-r--r--src/heretic/p_setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heretic/p_setup.c b/src/heretic/p_setup.c
index 11e3ad95..d27250c4 100644
--- a/src/heretic/p_setup.c
+++ b/src/heretic/p_setup.c
@@ -484,7 +484,7 @@ void P_GroupLines(void)
}
// build line tables for each sector
- linebuffer = Z_Malloc(total * sizeof(linebuffer_t *), PU_LEVEL, 0);
+ linebuffer = Z_Malloc(total * sizeof(line_t *), PU_LEVEL, 0);
sector = sectors;
for (i = 0; i < numsectors; i++, sector++)
{