# HG changeset patch # User Matti Hamalainen # Date 1525996066 -10800 # Node ID c3eba254bcc2177c402499688864386ce094e026 # Parent c4755b73b93c96a4792d65f327122d6c68cc57ad Change some message priorities. diff -r c4755b73b93c -r c3eba254bcc2 tools/gfxconv.c --- a/tools/gfxconv.c Fri May 11 02:46:59 2018 +0300 +++ b/tools/gfxconv.c Fri May 11 02:47:46 2018 +0300 @@ -1670,14 +1670,14 @@ if (optForcedFormat >= 0) { forced = &dmC64ImageFormats[optForcedFormat]; - dmMsg(0,"Forced %s format image, type %d, %s\n", + dmMsg(0, "Forced %s format image, type %d, %s\n", forced->name, forced->type, forced->fext); } res = dmC64DecodeBMP(&inC64Image, dataBuf, dataSize, optInSkip, optInSkip + 2, &inC64Fmt, forced); if (forced == NULL && inC64Fmt != NULL) { - dmMsg(1,"Probed %s format image, type %d, %s\n", + dmMsg(1, "Probed %s format image, type %d, %s\n", inC64Fmt->name, inC64Fmt->type, inC64Fmt->fext); } @@ -1699,7 +1699,7 @@ { optInFormat = FFMT_IMAGE; optInSubFormat = index; - dmMsg(2, "Probed %s format image.\n", ifmt->fext); + dmMsg(1, "Probed %s format image.\n", ifmt->fext); } }