- Timestamp:
- Jan 14, 2022 2:05:23 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-helper-apps/os2/os2_util.c
r93149 r93231 36 36 #define IS_BLANK(ch) ((ch) == ' ' || (ch) == '\t' || (ch) == '\r' || (ch) == '\n') 37 37 38 /** NIL HQUEUE value. */ 39 #define NIL_HQUEUE (~(HQUEUE)0) 40 38 41 39 42 /********************************************************************************************************************************* … … 282 285 * Can we use DosCwait? 283 286 */ 284 if ( idSession == 0 && hQueue == NULL)287 if (hQueue == NIL_HQUEUE) 285 288 { 286 289 for (;;) … … 598 601 USHORT idSession = 0; 599 602 PID pidChild = 0; 600 HQUEUE hQueue = ~(HQUEUE)0;603 HQUEUE hQueue = NIL_HQUEUE; 601 604 CHAR szQueueName[64]; 602 605 unsigned cAsZero = 0;
Note:
See TracChangeset
for help on using the changeset viewer.