Mercurial > mplayer.hg
comparison TOOLS/realcodecs/drv3.c @ 26449:105de0884218
Remove pointless '0' flag from fprintf call, fixes the warning:
warning: '0' flag ignored with precision and '%d' printf format
author | diego |
---|---|
date | Mon, 21 Apr 2008 05:43:49 +0000 |
parents | 9e13376e0daa |
children | 200bf2cff54b |
comparison
equal
deleted
inserted
replaced
26448:0ded60b8e92e | 26449:105de0884218 |
---|---|
136 usecs=tv2.tv_usec-tv1.tv_usec; | 136 usecs=tv2.tv_usec-tv1.tv_usec; |
137 if (usecs<0) { | 137 if (usecs<0) { |
138 usecs+=1000000; | 138 usecs+=1000000; |
139 --secs; | 139 --secs; |
140 } | 140 } |
141 // fprintf(stderr, "Duration: %ld.%0.6lds\n", secs, usecs); | 141 // fprintf(stderr, "Duration: %ld.%.6lds\n", secs, usecs); |
142 } | 142 } |
143 | 143 |
144 | 144 |
145 static void hexdump(void *pos, int len) { | 145 static void hexdump(void *pos, int len) { |
146 unsigned char *cpos=pos, *cpos1; | 146 unsigned char *cpos=pos, *cpos1; |