Changeset 33595 in vbox for trunk/src/VBox/GuestHost/OpenGL/util
- Timestamp:
- Oct 29, 2010 10:35:00 AM (14 years ago)
- Location:
- trunk/src/VBox/GuestHost/OpenGL/util
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/tcpip.c
r15532 r33595 723 723 if ( err == EINTR ) 724 724 { 725 crWarning( "select interrup ed by an unblocked signal, trying again" );725 crWarning( "select interrupted by an unblocked signal, trying again" ); 726 726 } 727 727 else … … 1314 1314 { 1315 1315 crWarning( "connection to %s:%d " 1316 "interrup ed, trying again", conn->hostname, conn->port );1316 "interrupted, trying again", conn->hostname, conn->port ); 1317 1317 continue; 1318 1318 } -
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r33561 r33595 453 453 if (conn->cbHostBufferAllocated < len) 454 454 { 455 crDebug("Host buffer too small %d out of requ sted %d bytes, reallocating", conn->cbHostBufferAllocated, len);455 crDebug("Host buffer too small %d out of requested %d bytes, reallocating", conn->cbHostBufferAllocated, len); 456 456 crFree(conn->pHostBuffer); 457 457 conn->pHostBuffer = crAlloc(len); … … 534 534 if (rc==0) 535 535 { 536 crWarning("vboxCall retry(%i) succe ded", i+1);536 crWarning("vboxCall retry(%i) succeeded", i+1); 537 537 return VINF_SUCCESS; 538 538 } -
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgsmi.c
r33540 r33595 290 290 if (rc==0) 291 291 { 292 crWarning("vboxCall retry(%i) succe ded", i+1);292 crWarning("vboxCall retry(%i) succeeded", i+1); 293 293 return VINF_SUCCESS; 294 294 }
Note:
See TracChangeset
for help on using the changeset viewer.