From 1aaef737df3e82e423a223bd854f45582f27a9a4 Mon Sep 17 00:00:00 2001
From: Angus Gratton <gus@projectgus.com>
Date: Thu, 10 Sep 2015 21:10:49 +1000
Subject: [PATCH] Fix printf format string changed in merge

---
 examples/experiments/unaligned_load/unaligned_load.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/experiments/unaligned_load/unaligned_load.c b/examples/experiments/unaligned_load/unaligned_load.c
index c65a818..e7c7c8e 100644
--- a/examples/experiments/unaligned_load/unaligned_load.c
+++ b/examples/experiments/unaligned_load/unaligned_load.c
@@ -97,7 +97,7 @@ uint32_t IRAM run_test(const char *string, test_with_fn_t testfn, const char *te
     uint32_t after = get_ccount();
     vPortExitCritical();
     uint32_t instructions = (after-before)/TEST_REPEATS - nullvalue;
-    printf("%5ld instructions\r\n", instructions);
+    printf("%5d instructions\r\n", instructions);
     return instructions;
 }