comparison tools/fanalyze.c @ 2290:180604abb65a

Always print out grep value list.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 03 Jul 2019 01:52:01 +0300
parents 519c8726b235
children 36edd316184a
comparison
equal deleted inserted replaced
2287:631bbd451d08 2290:180604abb65a
251 251
252 if (match) 252 if (match)
253 { 253 {
254 Uint32 mval; 254 Uint32 mval;
255 dmGetData(node->type, file, offs + n, &mval); 255 dmGetData(node->type, file, offs + n, &mval);
256 dmPrint(1, mfmt, mval, veol); 256 printf(mfmt, mval, veol);
257 } 257 }
258 else 258 else
259 { 259 {
260 if (node->vwildcards[n]) 260 if (node->vwildcards[n])
261 dmPrint(1, "?%s", veol); 261 printf("?%s", veol);
262 else 262 else
263 dmPrint(1, mfmt, node->values[n], veol); 263 printf(mfmt, node->values[n], veol);
264 } 264 }
265 } 265 }
266 } 266 }
267 267
268 268