# HG changeset patch # User Matti Hamalainen # Date 1544534166 -7200 # Node ID feed844a5ae1595f2e9c347d4fc316bc5f0c895d # Parent a0a6f5a3fbbfc82b0b2bc0d619472012da06672e Return DMERR_OK where appropriate instead of 0. diff -r a0a6f5a3fbbf -r feed844a5ae1 tools/libgfx.c --- a/tools/libgfx.c Mon Dec 10 20:48:46 2018 +0200 +++ b/tools/libgfx.c Tue Dec 11 15:16:06 2018 +0200 @@ -59,7 +59,7 @@ if (ctx->outBitCount != 8) dmPutBits(ctx, 0, ctx->outBitCount); - return 0; + return DMERR_OK; }