summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2006-12-16 00:53:17 +0000
committerSimon Howard2006-12-16 00:53:17 +0000
commit6151447af3a73b60e8fa3c4a1515206ddf318a60 (patch)
treed52673ccfbec5318192eb1e1c944c3b2465d8ad6
parentcb2b499ebdc1e192526ccd07404acb58fbff6df4 (diff)
downloadchocolate-doom-6151447af3a73b60e8fa3c4a1515206ddf318a60.tar.gz
chocolate-doom-6151447af3a73b60e8fa3c4a1515206ddf318a60.tar.bz2
chocolate-doom-6151447af3a73b60e8fa3c4a1515206ddf318a60.zip
"\0" -> NULL
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 775
-rw-r--r--src/sounds.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sounds.c b/src/sounds.c
index c24bbaf2..6f315023 100644
--- a/src/sounds.c
+++ b/src/sounds.c
@@ -26,6 +26,7 @@
//-----------------------------------------------------------------------------
+#include <stdlib.h>
#include "doomtype.h"
@@ -37,7 +38,7 @@
musicinfo_t S_music[] =
{
- { "\0", 0, 0, 0 },
+ { NULL, 0, 0, 0 },
{ "e1m1", 0, 0, 0 },
{ "e1m2", 0, 0, 0 },
{ "e1m3", 0, 0, 0 },