mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-08 16:05:56 +00:00
Fix warnings
This commit is contained in:
parent
b7e4de6ea5
commit
064fc81697
2 changed files with 2 additions and 3 deletions
|
|
@ -145,7 +145,7 @@ namespace utils
|
|||
info.duration_us = av_format_ctx->duration;
|
||||
|
||||
AVDictionaryEntry* tag = nullptr;
|
||||
while (tag = av_dict_get(av_format_ctx->metadata, "", tag, AV_DICT_IGNORE_SUFFIX))
|
||||
while ((tag = av_dict_get(av_format_ctx->metadata, "", tag, AV_DICT_IGNORE_SUFFIX)))
|
||||
{
|
||||
info.metadata[tag->key] = tag->value;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue