The following change to dlls/quartz/control.c revision 1.1 date: 2003/11/18 20:47:48; author: julliard; state: Exp; Robert Shearman <R.J.Shearman@xxxxxxxxxxxxx> - AVI Splitter implementation. - Add new debugging function wine_dbstr_longlong. didn't take into account constant sizes. Fixed thusly. Gerald ChangeLog: Mark long long constant as such. Index: control.c =================================================================== RCS file: /home/wine/wine/dlls/quartz/control.c,v retrieving revision 1.1 diff -u -3 -p -r1.1 control.c --- control.c 18 Nov 2003 20:47:48 -0000 1.1 +++ control.c 19 Nov 2003 09:42:23 -0000 @@ -44,7 +44,7 @@ HRESULT MediaSeekingImpl_Init(LPVOID pUs AM_SEEKING_CanGetStopPos | AM_SEEKING_CanGetDuration; pSeeking->llStart = 0; - pSeeking->llStop = 0x8000000000000000; + pSeeking->llStop = 0x8000000000000000LL; pSeeking->llDuration = pSeeking->llStop - pSeeking->llStart; pSeeking->dRate = 1.0;