comparison tools/fanalyze.c @ 2430:190f5caaf1a8

Use printf() here as well.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 18 Feb 2020 23:31:10 +0200
parents ebb4650f3cc1
children ca548150de6b
comparison
equal deleted inserted replaced
2429:ebb4650f3cc1 2430:190f5caaf1a8
461 DMGrepValue *node = &setGrepValues[nsetGrepValues++]; 461 DMGrepValue *node = &setGrepValues[nsetGrepValues++];
462 memcpy(node, &val, sizeof(val)); 462 memcpy(node, &val, sizeof(val));
463 463
464 if (mode == FA_GREP) 464 if (mode == FA_GREP)
465 { 465 {
466 dmPrint(1, "Grep %s: ", 466 printf("Grep %s: ",
467 dmGrepTypes[val.type].name); 467 dmGrepTypes[val.type].name);
468 468
469 dmPrintGrepValueList(node, FALSE, NULL, 0); 469 dmPrintGrepValueList(node, FALSE, NULL, 0);
470 } 470 }
471 } 471 }