From 646496d2d68a59a3416b55228d86af816ab46141 Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Thu, 3 Oct 2013 15:15:03 +0200 Subject: [PATCH] Fix boot code revision display (put major/minor in right order) --- isp_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isp_commands.c b/isp_commands.c index 88ada52..1019569 100644 --- a/isp_commands.c +++ b/isp_commands.c @@ -270,7 +270,7 @@ int isp_cmd_boot_version(void) } ver[0] = strtoul(buf, &tmp, 10); ver[1] = strtoul(tmp, NULL, 10); - printf("Boot code version is %u.%u\n", ver[0], ver[1]); + printf("Boot code version is %u.%u\n", ver[1], ver[0]); return 0; } -- 2.43.0