diff options
author | Hans de Goede <j.w.r.degoede@hhs.nl> | 2008-06-14 04:16:06 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-06-14 04:16:06 +0000 |
commit | da7663fadd236ac60bcc1adb0ef6063b14ec2f26 (patch) | |
tree | 46bca132d3e4bce6a9bf21cacb41c3737b9fe5d1 | |
parent | 0700e55a62c329adfa8db0f81301b7ab8af76c45 (diff) |
mod: fix crashing on modtracker files
This patch was taken from
http://bugzilla.livna.org/show_bug.cgi?id=1987 and addresses bug
0001693[1]
[1] - http://musicpd.org/mantis/view.php?id=1693
git-svn-id: https://svn.musicpd.org/mpd/branches/branch-0.13.0-fixes@7376 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/inputPlugins/mod_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c index 800abc95f..abfcb652d 100644 --- a/src/inputPlugins/mod_plugin.c +++ b/src/inputPlugins/mod_plugin.c @@ -66,7 +66,7 @@ static MDRIVER drv_mpd = { 255, #if (LIBMIKMOD_VERSION > 0x030106) "mpd", /* Alias */ -#if (LIBMIKMOD_VERSION > 0x030200) +#if (LIBMIKMOD_VERSION >= 0x030200) NULL, /* CmdLineHelp */ #endif NULL, /* CommandLine */ |