Changeset 37742 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jul 4, 2011 3:36:58 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/debug.c
r37741 r37742 331 331 { 332 332 size_t cb = 0; 333 const int idxTcpState = (int) pvValue;333 const int idxTcpState = (int)(uintptr_t)pvValue; 334 334 char *pszTcpStateName = (idxTcpState >= 0 && idxTcpState < TCP_NSTATES) ? g_apszTcpStates[idxTcpState] : "TCPS_INVALIDE_STATE"; 335 335 AssertReturn(RTStrCmp(pszType, "tcpstate") == 0, 0);
Note:
See TracChangeset
for help on using the changeset viewer.