commit 6151447af3a73b60e8fa3c4a1515206ddf318a60
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Sat Dec 16 00:53:17 2006 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Sat Dec 16 00:53:17 2006 +0000
"\0" -> NULL
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 775
---
src/sounds.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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 },