# HG changeset patch # User Matti Hamalainen # Date 1526377135 -10800 # Node ID 2f8f2f7a42c8959f3faf4adcae1e3af4fa980fd1 # Parent b2fe49401465959ad6861e812610588c3eb4f044 Constify. diff -r b2fe49401465 -r 2f8f2f7a42c8 tools/libgfx.c --- a/tools/libgfx.c Tue May 15 12:35:55 2018 +0300 +++ b/tools/libgfx.c Tue May 15 12:38:55 2018 +0300 @@ -1601,7 +1601,7 @@ } -void dmDecodeBitPlane(Uint8 *dp, Uint8 *src, const int width, const int nplane) +void dmDecodeBitPlane(Uint8 *dp, const Uint8 *src, const int width, const int nplane) { for (int xc = 0; xc < width; xc++) {