diff options
author | Simon Howard | 2006-12-16 00:53:17 +0000 |
---|---|---|
committer | Simon Howard | 2006-12-16 00:53:17 +0000 |
commit | 6151447af3a73b60e8fa3c4a1515206ddf318a60 (patch) | |
tree | d52673ccfbec5318192eb1e1c944c3b2465d8ad6 /src/sounds.c | |
parent | cb2b499ebdc1e192526ccd07404acb58fbff6df4 (diff) | |
download | chocolate-doom-6151447af3a73b60e8fa3c4a1515206ddf318a60.tar.gz chocolate-doom-6151447af3a73b60e8fa3c4a1515206ddf318a60.tar.bz2 chocolate-doom-6151447af3a73b60e8fa3c4a1515206ddf318a60.zip |
"\0" -> NULL
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 775
Diffstat (limited to 'src/sounds.c')
-rw-r--r-- | src/sounds.c | 3 |
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 }, |