# HG changeset patch # User Matti Hamalainen # Date 1530299811 -10800 # Node ID f8e2728c1b7f7fdd80b9825e93d776f67b0ece35 # Parent 5790b52c339ee29d42a90c5632e4c1104ba1beb6 Return DMERR_NOT_SUPPORTED from dmC64ConvertGenericImage2BMP() as it does not do anything yet. diff -r 5790b52c339e -r f8e2728c1b7f tools/lib64gfx.c --- a/tools/lib64gfx.c Fri Jun 29 19:32:50 2018 +0300 +++ b/tools/lib64gfx.c Fri Jun 29 22:16:51 2018 +0300 @@ -1434,7 +1434,7 @@ if (dst == NULL || src == NULL || fmt == NULL || spec == NULL) return DMERR_NULLPTR; - return DMERR_OK; + return DMERR_NOT_SUPPORTED; }