From f4eeb000bf4b5bf2e2285973aa3ecd12633f3bf0 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 18 Oct 2011 18:58:32 +0200 Subject: [PATCH] ffprobe: fix weird align --- ffprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffprobe.c b/ffprobe.c index d6c7093143..52b33f8b59 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -817,7 +817,7 @@ static int probe_file(const char *filename) if (!print_format) print_format = av_strdup("default"); - w_name = av_strtok(print_format, "=", &buf); + w_name = av_strtok(print_format, "=", &buf); w_args = buf; w = writer_get_by_name(w_name);