Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-26 14:35:20 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-27 19:17:07 +0300
commitffc00e5b16a9bacf707b9edf3c0d44cea4bd4dbe (patch)
treee8760b5541ed7bd32a7be4713cb350ad91f866fb /libavfilter/graphdump.c
parent76ff9640bea867a8ae5b7972faddc85eb7476222 (diff)
avfilter/graphdump: Use pointer to const for pointer to static strings
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/graphdump.c')
-rw-r--r--libavfilter/graphdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c
index 099125bea8..cf8914b558 100644
--- a/libavfilter/graphdump.c
+++ b/libavfilter/graphdump.c
@@ -29,7 +29,7 @@
static int print_link_prop(AVBPrint *buf, AVFilterLink *link)
{
- char *format;
+ const char *format;
AVBPrint dummy_buffer;
if (!buf) {