diff options
author | Simon Howard | 2008-09-26 22:46:05 +0000 |
---|---|---|
committer | Simon Howard | 2008-09-26 22:46:05 +0000 |
commit | 8eba353126080a0fd16586b8a23aab6fe384afa4 (patch) | |
tree | 7cc7e23114c8aa4a805ba82bc4868dffd00e40fa | |
parent | af2add1cbef05bf05fe6a59f84975caabe0779c0 (diff) | |
download | chocolate-doom-8eba353126080a0fd16586b8a23aab6fe384afa4.tar.gz chocolate-doom-8eba353126080a0fd16586b8a23aab6fe384afa4.tar.bz2 chocolate-doom-8eba353126080a0fd16586b8a23aab6fe384afa4.zip |
Fix compile error.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1290
-rw-r--r-- | src/heretic/p_setup.c | 2 |
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++) { |