summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorStephen Hutchinson <qyot27@gmail.com>2013-04-04 23:56:35 -0400
committerwm4 <wm4@nowhere>2013-04-06 00:00:21 +0200
commit33639d01564326ed22e16ace6051168c8d01366d (patch)
tree95f35907dd36bff4493a99bab4f04327382fd585 /stream
parentb224f37174728d564a27bc945cd38d5d1a231042 (diff)
downloadmpv-33639d01564326ed22e16ace6051168c8d01366d.tar.bz2
mpv-33639d01564326ed22e16ace6051168c8d01366d.tar.xz
stream_cddb: fix compilation on MinGW-w64
Like the VCD case, stream_cddb.c relies on ntddcdrm.h, which is no longer under the ddk directory.
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_cddb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_cddb.c b/stream/stream_cddb.c
index d2ed37deb6..7f4558e7e7 100644
--- a/stream/stream_cddb.c
+++ b/stream/stream_cddb.c
@@ -57,7 +57,7 @@
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
#include <sys/cdio.h>
#elif defined(__MINGW32__) || defined(__CYGWIN__)
-#include <ddk/ntddcdrm.h>
+#include <ntddcdrm.h>
#elif defined(__bsdi__)
#include <dvd.h>
#elif defined(__APPLE__) || defined(__DARWIN__)