<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: times new roman,new york,times,serif; font-size: 12pt; color: #000000'>This patch gets rid of a compile time dprintf warning.<br>A 'long int' was being passed to a '%d'.<br><br>Signed-off-by: Dave Frodin <dave.frodin@se-eng.com><br>---<br> src/post.c |    2 +-<br> 1 files changed, 1 insertions(+), 1 deletions(-)<br><br>diff --git a/src/post.c b/src/post.c<br>index 924b311..b84d19e 100644<br>--- a/src/post.c<br>+++ b/src/post.c<br>@@ -345,7 +345,7 @@ reloc_init(void)<br>         panic("No space for init relocation.\n");<br><br>     // Copy code and update relocs (init absolute, init relative, and runtime)<br>-    dprintf(1, "Relocating low data from %p to %p (size %d)\n"<br>+    dprintf(1, "Relocating low data from %p to %p (size %ld)\n"<br>             , datalow_start, final_datalow_start, datalow_end - datalow_start);<br>     updateRelocs(code32flat_start, _reloc_datalow_start, _reloc_datalow_end<br>                  , final_datalow_start - datalow_start);<br>--<br>1.7.9<br><br></div></body></html>