# HG changeset patch # User Matti Hamalainen # Date 1530226580 -10800 # Node ID d9a0a4bccf5dfe08e6b0e606aafa12d5888cb338 # Parent 6e28a33ed851e0c8fc52a836cf01cada52ad8b6c Cleanup. diff -r 6e28a33ed851 -r d9a0a4bccf5d tools/lib64gfx.c --- a/tools/lib64gfx.c Fri Jun 29 01:15:30 2018 +0300 +++ b/tools/lib64gfx.c Fri Jun 29 01:56:20 2018 +0300 @@ -441,8 +441,7 @@ int dmGenericRLEOutputRun(DMGrowBuf *dst, const DMCompParams *cfg, const Uint8 data, const unsigned int count) { - unsigned int scount; - for (scount = count; scount; scount--) + for (unsigned int scount = count; scount; scount--) { if (!dmGrowBufPutU8(dst, data)) {