Index: /trunk/src/VBox/Disassembler/testcase/tstDisasm-2.cpp
===================================================================
--- /trunk/src/VBox/Disassembler/testcase/tstDisasm-2.cpp	(revision 24010)
+++ /trunk/src/VBox/Disassembler/testcase/tstDisasm-2.cpp	(revision 24011)
@@ -942,5 +942,5 @@
                 /** @todo this stuff belongs in IPRT, same stuff as mac address reading. Could be reused for IPv6 with a different item size.*/
                 /* skip white space */
-                while (isspace(*psz))
+                while (RT_C_IS_SPACE(*psz))
                     psz++;
                 if (!*psz)
@@ -951,5 +951,5 @@
                 if (iNum == -1)
                     return 1;
-                if (!isspace(*psz) && *psz)
+                if (!RT_C_IS_SPACE(*psz) && *psz)
                 {
                     int iDigit = HexDigitToNum(*psz++);
