Index: /trunk/src/VBox/Devices/Audio/DevSB16.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevSB16.cpp	(revision 24009)
+++ /trunk/src/VBox/Devices/Audio/DevSB16.cpp	(revision 24010)
@@ -1565,4 +1565,5 @@
     s->port=qemu_get_be32 (f);
     s->ver=qemu_get_be32 (f);
+
     s->in_index=qemu_get_be32 (f);
     s->out_data_len=qemu_get_be32 (f);
Index: /trunk/src/VBox/Devices/Network/DrvTAP.cpp
===================================================================
--- /trunk/src/VBox/Devices/Network/DrvTAP.cpp	(revision 24009)
+++ /trunk/src/VBox/Devices/Network/DrvTAP.cpp	(revision 24010)
@@ -28,4 +28,5 @@
 
 #include <iprt/assert.h>
+#include <iprt/ctype.h>
 #include <iprt/file.h>
 #include <iprt/string.h>
@@ -57,5 +58,4 @@
 # include <stropts.h>
 # include <fcntl.h>
-# include <ctype.h>
 # include <stdlib.h>
 # include <stdio.h>
@@ -647,5 +647,5 @@
     {
         size_t cch = strlen(pThis->pszDeviceName);
-        if (cch > 1 && isdigit(pThis->pszDeviceName[cch - 1]) != 0)
+        if (cch > 1 && RT_C_IS_DIGIT(pThis->pszDeviceName[cch - 1]) != 0)
             iPPA = pThis->pszDeviceName[cch - 1] - '0';
     }
@@ -921,5 +921,5 @@
      * Check that no-one is attached to us.
      */
-    AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 
+    AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
                     ("Configuration error: Not possible to attach anything to this driver!\n"),
                     VERR_PDM_DRVINS_NO_ATTACH);
@@ -1094,7 +1094,7 @@
     NULL,
     /* pfnDetach */
-    NULL, 
+    NULL,
     /* pfnPowerOff */
-    NULL, 
+    NULL,
     /* pfnSoftReset */
     NULL,
