summaryrefslogtreecommitdiff
path: root/bootloader/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/main.c')
-rw-r--r--bootloader/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/main.c b/bootloader/main.c
index 1117b649d0..ac9a7ad2ba 100644
--- a/bootloader/main.c
+++ b/bootloader/main.c
@@ -565,7 +565,7 @@ void main(void)
printf("Loading firmware");
i = load_firmware((unsigned char *)DRAM_START, BOOTFILE, MAX_LOADSIZE);
if(i < 0)
- printf("Error: %d", strerror(i));
+ printf("Error: %s", strerror(i));
if (i == EOK)
start_firmware();