From 0080185db9453e121fdbbba6662e7331964aa262 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sun, 6 Apr 2014 16:49:24 -0600 Subject: [PATCH] RoamInterruptibleCmd.C: NULL is not 0 --- cde/programs/dtmail/dtmail/RoamInterruptibleCmd.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cde/programs/dtmail/dtmail/RoamInterruptibleCmd.C b/cde/programs/dtmail/dtmail/RoamInterruptibleCmd.C index 07ee31d2..feb578fe 100644 --- a/cde/programs/dtmail/dtmail/RoamInterruptibleCmd.C +++ b/cde/programs/dtmail/dtmail/RoamInterruptibleCmd.C @@ -56,7 +56,7 @@ RoamInterruptibleCmd::RoamInterruptibleCmd ( char *name, int active ) : NoUndoCmd ( name, label, active ) { - _wpId = NULL; // There is no work procedure yet + _wpId = 0; // There is no work procedure yet _callback = NULL; // Callbacks are specified in execute() _clientData = NULL; _done = FALSE; -- 2.25.1