diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-04-29 15:58:27 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-04-29 15:58:27 +0000 |
commit | 12018188e9317c2092a3e12db8672b25b1e4bbad (patch) | |
tree | b8767c519dacf4b3ed86688070cb56dfd6923c7d /src/input/libdvdnav/read_cache.c | |
parent | a23c0fad73df02e6419a01a1c07923876c3e8436 (diff) | |
download | xine-lib-12018188e9317c2092a3e12db8672b25b1e4bbad.tar.gz xine-lib-12018188e9317c2092a3e12db8672b25b1e4bbad.tar.bz2 |
Update from the libdvdnav project.
CVS patchset: 4708
CVS date: 2003/04/29 15:58:27
Diffstat (limited to 'src/input/libdvdnav/read_cache.c')
-rw-r--r-- | src/input/libdvdnav/read_cache.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/input/libdvdnav/read_cache.c b/src/input/libdvdnav/read_cache.c index f14d826ce..bb68a83ae 100644 --- a/src/input/libdvdnav/read_cache.c +++ b/src/input/libdvdnav/read_cache.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: read_cache.c,v 1.7 2003/02/20 16:02:00 mroi Exp $ + * $Id: read_cache.c,v 1.8 2003/04/29 15:58:30 jcdutton Exp $ * */ @@ -114,7 +114,11 @@ struct read_cache_s { # if READ_CACHE_TRACE # define dprintf(fmt, ...) fprintf(MSG_OUT, "libdvdnav: %s: "fmt, __func__ , __VA_ARGS__) # else +#ifdef _MSC_VER +# define dprintf(fmt, str) /* Nowt */ +#else # define dprintf(fmt, ...) /* Nowt */ +#endif /* _MSC_VER */ # endif #endif |