<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'>Here's a patch that's been lingering awhile.<br>thanks,<br>Dave<br><br><hr id="zwchr"><blockquote style="border-left:2px solid #1010FF;margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><b>From: </b>"Dave Frodin" <dave.frodin@se-eng.com><br><b>To: </b>"seabios" <seabios@seabios.org><br><b>Sent: </b>Wednesday, October 17, 2012 9:30:01 AM<br><b>Subject: </b>Get rid of a compile time dprintf warning<br><br><style>p { margin: 0; }</style><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></blockquote><br></div></body></html>