diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-06-13 09:28:41 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-06-13 09:28:41 +0200 |
commit | 3323c5f353af9d9de29528a086cbe9b103e268ea (patch) | |
tree | cf6c85e2fb50436ee0bc86352b4945bf61f13fe4 /libavdevice | |
parent | 178ba1fd03c85835a70ec5b365d62ec6582da97f (diff) | |
download | ffmpeg-3323c5f353af9d9de29528a086cbe9b103e268ea.tar.gz |
Remove a few occurences of "long long" from the libraries.
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/iec61883.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/iec61883.c b/libavdevice/iec61883.c index 01e52899ef..5c74cc7729 100644 --- a/libavdevice/iec61883.c +++ b/libavdevice/iec61883.c @@ -271,7 +271,7 @@ static int iec61883_read_header(AVFormatContext *context) } if (dv->device_guid) { - if (sscanf(dv->device_guid, "%llx", (long long unsigned int *)&guid) != 1) { + if (sscanf(dv->device_guid, "%"SCNu64, &guid) != 1) { av_log(context, AV_LOG_INFO, "Invalid dvguid parameter: %s\n", dv->device_guid); goto fail; |