Skip to content

Commit e4e7c9f

Browse files
committed
COMP: Prefer NULL to 0 for pointer initialization
Eventually when C++11 is required, these should be changed to nullptr.
1 parent fa5f22e commit e4e7c9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ModuleDescriptionParser/ModuleProcessInformation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ extern "C" {
4040

4141
ModuleProcessInformation()
4242
{
43-
ProgressCallbackFunction = 0;
44-
ProgressCallbackClientData = 0;
43+
ProgressCallbackFunction = NULL;
44+
ProgressCallbackClientData = NULL;
4545
Initialize();
4646
}
4747

0 commit comments

Comments
 (0)