From 2d975e0681752b0b9d51d8ef84d3497f75463dff Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 15 Apr 2011 19:33:11 +0000 Subject: [PATCH] it's int64_t in the ffmpeg headers, so it will be int64_t here, god damn it --- panda/src/movies/ffmpegVirtualFile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/movies/ffmpegVirtualFile.cxx b/panda/src/movies/ffmpegVirtualFile.cxx index 237b66dd32..a00680e252 100644 --- a/panda/src/movies/ffmpegVirtualFile.cxx +++ b/panda/src/movies/ffmpegVirtualFile.cxx @@ -38,7 +38,7 @@ extern "C" { #else static int pandavfs_write(URLContext *h, const unsigned char *buf, int size); #endif - static PN_int64 pandavfs_seek(URLContext *h, PN_int64 pos, int whence); + static int64_t pandavfs_seek(URLContext *h, int64_t pos, int whence); static int pandavfs_close(URLContext *h); }