From 638020ec70c65a83e2fa4d185883a133b8b4b25f Mon Sep 17 00:00:00 2001 From: goldsimon Date: Wed, 18 Feb 2009 20:37:42 +0000 Subject: [PATCH] sys_now() must return u32_t, not unsigned long --- src/include/lwip/sys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/sys.h b/src/include/lwip/sys.h index ce73beac..cfaed4e4 100644 --- a/src/include/lwip/sys.h +++ b/src/include/lwip/sys.h @@ -142,7 +142,7 @@ sys_thread_t sys_thread_new(char *name, void (* thread)(void *arg), void *arg, i /* The following functions are used only in Unix code, and can be omitted when porting the stack. */ /* Returns the current time in microseconds. */ -unsigned long sys_now(void); +u32_t sys_now(void); #endif /* NO_SYS */