Changeset 24853 in vbox
- Timestamp:
- Nov 22, 2009 5:07:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip/src/core/sys.c
r17797 r24853 78 78 memp_free(MEMP_SYS_TIMEOUT, tmptimeout); 79 79 if (h != NULL) { 80 LWIP_DEBUGF(SYS_DEBUG, ("smf calling h=%p(%p)\n", (void *) h, (void *)arg));80 LWIP_DEBUGF(SYS_DEBUG, ("smf calling h=%p(%p)\n", (void *)(uintptr_t)h, (void *)arg)); 81 81 h(arg); 82 82 } … … 133 133 memp_free(MEMP_SYS_TIMEOUT, tmptimeout); 134 134 if (h != NULL) { 135 LWIP_DEBUGF(SYS_DEBUG, ("ssw h=%p(%p)\n", (void *) h, (void *)arg));135 LWIP_DEBUGF(SYS_DEBUG, ("ssw h=%p(%p)\n", (void *)(uintptr_t)h, (void *)arg)); 136 136 h(arg); 137 137 } … … 172 172 173 173 LWIP_DEBUGF(SYS_DEBUG, ("sys_timeout: %p msecs=%"U32_F" h=%p arg=%p\n", 174 (void *)timeout, msecs, (void *) h, (void *)arg));174 (void *)timeout, msecs, (void *)(uintptr_t)h, (void *)arg)); 175 175 176 176 LWIP_ASSERT("sys_timeout: timeouts != NULL", timeouts != NULL);
Note:
See TracChangeset
for help on using the changeset viewer.