-Werror,-Wsign-compare

Change-Id: Id240e2eb51e3ac40f13f813386a21e97ab1e9ff1
This commit is contained in:
Stephan Bergmann
2013-02-20 21:24:49 +01:00
parent 76bc43823a
commit 116fdcfa27

View File

@@ -158,7 +158,7 @@ uno::Reference< graphic::XGraphic > SAL_CALL FrameGrabber::grabFrame( double fMe
#ifdef AVMEDIA_GST_0_10
GST_BUFFER_SIZE( pBuf ) >= static_cast<unsigned>( nWidth * nHeight * 3 )
#else
gst_buffer_get_size( pBuf ) >= ( nWidth * nHeight * 3 )
gst_buffer_get_size( pBuf ) >= static_cast<unsigned>( nWidth * nHeight * 3 )
#endif
)
{