summaryrefslogtreecommitdiff
path: root/utils/nwztools/upgtools
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2017-10-08 15:13:54 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2017-10-22 15:35:10 +0200
commite441c2696d43d80d8d43e217cbe451e971b67c52 (patch)
treed9141e22bee20e6db9cdb74e670cf95422e89dd4 /utils/nwztools/upgtools
parent7e42e902947b951bc9ec9f5d6ba6ef6a6f2eb836 (diff)
downloadrockbox-e441c2696d43d80d8d43e217cbe451e971b67c52.tar.gz
rockbox-e441c2696d43d80d8d43e217cbe451e971b67c52.zip
nwztools/upgtools: make the tool print the whole kas, not just 16 bytes
Change-Id: I9daca9148b7aaea905a765dfeb95faf6fb7198b1
Diffstat (limited to 'utils/nwztools/upgtools')
-rw-r--r--utils/nwztools/upgtools/upgtool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/nwztools/upgtools/upgtool.c b/utils/nwztools/upgtools/upgtool.c
index 7a4d78f0d7..ff2a1f60f7 100644
--- a/utils/nwztools/upgtools/upgtool.c
+++ b/utils/nwztools/upgtools/upgtool.c
@@ -435,7 +435,7 @@ int main(int argc, char **argv)
435 cprintf(GREEN, " %s:", g_model_list[i].model); 435 cprintf(GREEN, " %s:", g_model_list[i].model);
436 436
437 cprintf(RED, " kas="); 437 cprintf(RED, " kas=");
438 cprintf(YELLOW, "%."STR(NWZ_KAS_SIZE)"s", g_model_list[i].kas); 438 cprintf(YELLOW, "%s", g_model_list[i].kas);
439 if(g_model_list[i].confirmed) 439 if(g_model_list[i].confirmed)
440 cprintf(RED, " confirmed"); 440 cprintf(RED, " confirmed");
441 else 441 else