# HG changeset patch # User Matti Hamalainen # Date 1543912386 -7200 # Node ID 6c6a4ea6754031f7217c9611d97c00a0b02e4702 # Parent 1a032298adb8139e16902e0c38bf40b29808cf44 Make two functions static and one not. diff -r 1a032298adb8 -r 6c6a4ea67540 tools/libgfx.c --- a/tools/libgfx.c Tue Dec 04 09:55:24 2018 +0200 +++ b/tools/libgfx.c Tue Dec 04 10:33:06 2018 +0200 @@ -1602,7 +1602,7 @@ } -static BOOL dmIFFDecodeByteRun1Row(DMResource *fp, Uint8 *buf, const size_t bufLen) +BOOL dmIFFDecodeByteRun1Row(DMResource *fp, Uint8 *buf, const size_t bufLen) { size_t offs = 0; do @@ -2082,7 +2082,7 @@ }; -BOOL dmIFFEncodeByteRun1LIT(DMResource *fp, +static BOOL dmIFFEncodeByteRun1LIT(DMResource *fp, const Uint8 *buf, const size_t offs, const size_t count) { @@ -2097,7 +2097,7 @@ } -BOOL dmIFFEncodeByteRun1RLE(DMResource *fp, +static BOOL dmIFFEncodeByteRun1RLE(DMResource *fp, const Uint8 *buf, const size_t offs, const size_t count) {