diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-24 16:55:35 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-24 16:55:35 +0000 |
commit | 875b71e7f35c15b6f86c9b8183d24aa2a941123d (patch) | |
tree | 99e2851fd659deb09ec531140e7cfa8fccefd8d3 /src/libw32dll/DirectShow/DS_VideoDecoder.c | |
parent | 94c8fa4b865b80a1113ece12d8596dcaf647aac0 (diff) | |
download | xine-lib-875b71e7f35c15b6f86c9b8183d24aa2a941123d.tar.gz xine-lib-875b71e7f35c15b6f86c9b8183d24aa2a941123d.tar.bz2 |
time for some Christmas presents...
libw32 compiles here without a single compiler warning
CVS patchset: 5946
CVS date: 2003/12/24 16:55:35
Diffstat (limited to 'src/libw32dll/DirectShow/DS_VideoDecoder.c')
-rw-r--r-- | src/libw32dll/DirectShow/DS_VideoDecoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libw32dll/DirectShow/DS_VideoDecoder.c b/src/libw32dll/DirectShow/DS_VideoDecoder.c index 75f28127d..e34659f91 100644 --- a/src/libw32dll/DirectShow/DS_VideoDecoder.c +++ b/src/libw32dll/DirectShow/DS_VideoDecoder.c @@ -65,7 +65,7 @@ typedef struct _ct ct; struct _ct { unsigned int bits; fourcc_t fcc; - GUID *subtype; + const GUID *subtype; int cap; }; @@ -228,7 +228,7 @@ DS_VideoDecoder * DS_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEAD if (!result) { this->m_Caps = (this->m_Caps | c->cap); - printf("%.4s ", &c->fcc); + printf("%.4s ", (char *)&c->fcc); } } printf("\n"); |