Changeset 8beeec88 in ffmpeg


Ignore:
Timestamp:
Dec 18, 2011, 12:20:18 AM (13 years ago)
Author:
Michael Niedermayer <michaelni@gmx.at>
Branches:
master
Children:
bd35dfea
Parents:
0db7b30
git-author:
Michael Niedermayer <michaelni@gmx.at> (12/17/11 23:34:01)
git-committer:
Michael Niedermayer <michaelni@gmx.at> (12/18/11 00:20:18)
Message:

sunrast: Fix warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libavcodec/sunrast.c

    r0db7b30 r8beeec88  
    7171    buf      += 32;
    7272
    73     if (type < RT_OLD || type > RT_FORMAT_IFF) {
     73    if (type > RT_FORMAT_IFF) {
    7474        av_log(avctx, AV_LOG_ERROR, "invalid (compression) type\n");
    7575        return -1;
Note: See TracChangeset for help on using the changeset viewer.