From 4733abcbf30fb662785d0c4ad3a0601e749dc57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 12 Dec 2005 01:56:46 +0000 Subject: use PRIxN, %zd, %td formats where needed Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk --- vhook/fish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vhook') diff --git a/vhook/fish.c b/vhook/fish.c index 5a274a848e..f9a605a54c 100644 --- a/vhook/fish.c +++ b/vhook/fish.c @@ -338,7 +338,7 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, FILE *f; char fname[256]; - snprintf(fname, sizeof(fname), "%s/fishimg%ld_%lld.ppm", ci->dir, (long)(av_gettime() / 1000000), pts); + snprintf(fname, sizeof(fname), "%s/fishimg%ld_%"PRId64".ppm", ci->dir, (long)(av_gettime() / 1000000), pts); f = fopen(fname, "w"); if (f) { fprintf(f, "P6 %d %d 255\n", width, height); -- cgit v1.2.3