Commit 09c7e423 authored by Federico Vaga's avatar Federico Vaga

sw: add missing cap. in singleline

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent f1c0cdb8
...@@ -67,9 +67,9 @@ static void print_meta_id_one(struct spec_meta_id *rom) ...@@ -67,9 +67,9 @@ static void print_meta_id_one(struct spec_meta_id *rom)
SPEC_META_VERSION_MIN(rom->version), SPEC_META_VERSION_MIN(rom->version),
SPEC_META_VERSION_PATCH(rom->version)); SPEC_META_VERSION_PATCH(rom->version));
if (verbose > 0) { if (verbose > 0) {
fprintf(stdout, ",%08x%08x%08x%08x,%s,%08x%08x%08x%08x", fprintf(stdout, ",%08x%08x%08x%08x,%s,%08x,%08x%08x%08x%08x",
rom->src[0], rom->src[1], rom->src[2], rom->src[3], rom->src[0], rom->src[1], rom->src[2], rom->src[3],
bom_to_str(rom->bom), bom_to_str(rom->bom), rom->cap,
rom->uuid[0], rom->uuid[1], rom->uuid[2], rom->uuid[3]); rom->uuid[0], rom->uuid[1], rom->uuid[2], rom->uuid[3]);
} }
fputc('\n', stdout); fputc('\n', stdout);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment