Changeset 10984 in vbox
- Timestamp:
- Jul 30, 2008 1:37:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDaemonize.cpp
r10973 r10984 152 152 /* We start off by opening the pidfile, so that we can fail straight away 153 153 * if it already exists. */ 154 RTFILE hPidfile = N ULL;154 RTFILE hPidfile = NIL_RTFILE; 155 155 if (pszPidfile != NULL) 156 156 { … … 176 176 { 177 177 # ifndef RT_OS_LINUX /* On Linux we do another fork later */ 178 if (hPidfile != N ULL)178 if (hPidfile != NIL_RTFILE) 179 179 { 180 180 char szBuf[256]; … … 238 238 if (pid != 0) 239 239 { 240 if (hPidfile != 0)240 if (hPidfile != NIL_RTFILE) 241 241 { 242 242 char szBuf[256];
Note:
See TracChangeset
for help on using the changeset viewer.