# HG changeset patch # User Matti Hamalainen # Date 1526470690 -10800 # Node ID 9a8395b56d1a287d3a5ed41fa9e54d168d606863 # Parent 4c89840a5c89b797db1041d94c6e3aa1320ce8a6 Remove unused message argument. diff -r 4c89840a5c89 -r 9a8395b56d1a tools/libgfx.c --- a/tools/libgfx.c Wed May 16 13:53:44 2018 +0300 +++ b/tools/libgfx.c Wed May 16 14:38:10 2018 +0300 @@ -1832,7 +1832,7 @@ iff.ncolors = chunk.size / 3; dmMsg(2, "ILBM: CMAP %d entries (%d bytes)\n", - iff.ncolors, chunk.size, 1 << iff.bmhd.nplanes); + iff.ncolors, chunk.size); if (iff.bmhd.nplanes > 0 && iff.ncolors != 1 << iff.bmhd.nplanes) dmMsg(2, "ILBM: Expected %d entries in CMAP.\n", 1 << iff.bmhd.nplanes);