From 353478180d524ddbe260c75fca58871ed6c3df68 Mon Sep 17 00:00:00 2001 From: davidhaas Date: Wed, 12 Feb 2003 15:09:04 +0000 Subject: [PATCH] Fix some compile issues with both coldfire and unix builds. --- src/core/sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/sys.c b/src/core/sys.c index 581d3a80..aa788e13 100644 --- a/src/core/sys.c +++ b/src/core/sys.c @@ -172,7 +172,7 @@ sys_timeout(u32_t msecs, sys_timeout_handler h, void *arg) timeouts = sys_arch_timeouts(); - DEBUGF(SYS_DEBUG, ("sys_timeout: %p msecs=%u h=%p arg=%p\n", (void *)timeout, msecs, (void *)h, (void *)arg)); + DEBUGF(SYS_DEBUG, ("sys_timeout: %p msecs=%lu h=%p arg=%p\n", (void *)timeout, msecs, (void *)h, (void *)arg)); LWIP_ASSERT("sys_timeout: timeouts != NULL", timeouts != NULL); if(timeouts->next == NULL) {