Fix missing break.

Found by gcc 7:

grab.c: In function ‘__imlib_GrabXImageToRGBA’:
grab.c:85:14: error: this statement may fall through [-Werror=implicit-fallthrough=]
              for (y = 0; y < h; y++)
              ^~~
grab.c:97:11: note: here
           case 24:
           ^~~~
This commit is contained in:
Kim Woelders 2017-02-12 09:07:30 +01:00
parent f6d902efd9
commit 1f96129e2c
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ __imlib_GrabXImageToRGBA(DATA32 * data, int ox, int oy, int ow, int oh,
tmp++;
}
}
break;
case 24:
case 25:
case 32: