You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
fftools/textformat: remove unreachable code in tf_mermaid
Integer writing is impossible here as the first branch was dead code, so remove it completely. Fix CID 1646948 Reviewed-by: softworkz <softworkz@hotmail.com>
This commit is contained in:
@ -616,10 +616,7 @@ static void mermaid_print_value(AVTextFormatContext *tfc, const char *key,
|
||||
|
||||
MM_INDENT();
|
||||
|
||||
if (is_int)
|
||||
writer_printf(tfc, " %s %"PRId64" %s\n", key, num, col_type);
|
||||
else
|
||||
writer_printf(tfc, " %s %s %s\n", key, str, col_type);
|
||||
writer_printf(tfc, " %s %s %s\n", key, str, col_type);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user