summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2011-10-18 18:58:32 +0200
committerStefano Sabatini <stefasab@gmail.com>2011-10-18 18:58:32 +0200
commitf4eeb000bf4b5bf2e2285973aa3ecd12633f3bf0 (patch)
treed58893b99499f76b832000054bfe9454d3260bff /ffprobe.c
parent2b72067406e565fdafc5861f5db10815b52cc6bb (diff)
ffprobe: fix weird align
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
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);