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:
diego 2008-04-28 12:01:13 +00:00
parent f2d8773fca
commit 7f6d9b2b91
1 changed files with 1 additions and 1 deletions

View File

@ -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);