mirror of https://github.com/mpv-player/mpv
Adjust printf length modifier, fixes the warning:
qtx/list.c:54: warning: format '%d' expects type 'int', but argument 2 has type 'long int' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26561 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f2d8773fca
commit
7f6d9b2b91
|
@ -51,7 +51,7 @@ int main(int argc, char *argv[]){
|
|||
desc.componentFlags=0;
|
||||
desc.componentFlagsMask=0;
|
||||
|
||||
printf("Count = %d\n",CountComponents(&desc));
|
||||
printf("Count = %ld\n",CountComponents(&desc));
|
||||
|
||||
Restore_LDT_Keeper();
|
||||
exit(0);
|
||||
|
|
Loading…
Reference in New Issue