mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
videotestsrc: Fix compiler warning on 64 bit mingw-w64
Fixes bug #660304.
This commit is contained in:
parent
c0956342b2
commit
ceea972b42
1 changed files with 1 additions and 1 deletions
|
@ -547,7 +547,7 @@ gst_video_test_src_get_size (GstVideoTestSrc * v, int w, int h)
|
|||
|
||||
fourcc->paint_setup (p, NULL);
|
||||
|
||||
return (unsigned long) p->endptr;
|
||||
return (guintptr) p->endptr;
|
||||
}
|
||||
|
||||
#define SCALEBITS 10
|
||||
|
|
Loading…
Reference in a new issue