Skip to content

Commit 4d2d814

Browse files
committed
Proper color for informational text.
1 parent 4af7b22 commit 4d2d814

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/deviceid.c

+3
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,10 @@ void deviceid_init(void)
240240
{
241241
FILE *fp = NULL;
242242
for (int n = 0; search_locations[n] != NULL && fp == NULL; n++) {
243+
#if TEST
244+
text_color_set(DW_COLOR_INFO);
243245
dw_printf ("Trying %s\n", search_locations[n]);
246+
#endif
244247
fp = fopen(search_locations[n], "r");
245248
#if TEST
246249
if (fp != NULL) {

0 commit comments

Comments
 (0)