diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-10-18 18:58:32 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-10-18 18:58:32 +0200 |
commit | f4eeb000bf4b5bf2e2285973aa3ecd12633f3bf0 (patch) | |
tree | d58893b99499f76b832000054bfe9454d3260bff | |
parent | 2b72067406e565fdafc5861f5db10815b52cc6bb (diff) | |
download | ffmpeg-f4eeb000bf4b5bf2e2285973aa3ecd12633f3bf0.tar.gz |
ffprobe: fix weird align
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |