summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-02-07 11:49:37 +0200
committerMartin Storsjö <martin@martin.st>2011-10-31 16:29:29 +0200
commit02170990fdb2a05c6eaf5fd449f440ec51c0f822 (patch)
tree8bef187629e410f5d4395af6f8b401603b4e1323 /avconv.c
parent45235d69c271966409cdd3eaa022258c22e04fdb (diff)
cmdutils: Rename read_file to cmdutils_read_file
This symbol name clashes with a symbol in gnutls, if linking statically to that library. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv.c b/avconv.c
index f93c9fa8d5..e3b4e80c3f 100644
--- a/avconv.c
+++ b/avconv.c
@@ -2178,7 +2178,7 @@ static int transcode_init(OutputFile *output_files,
} else {
char *logbuffer;
size_t logbuffer_size;
- if (read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
+ if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
logfilename);
exit_program(1);