1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

RoamInterruptibleCmd.C: NULL is not 0

This commit is contained in:
Jon Trulson 2014-04-06 16:49:24 -06:00
parent b241414cda
commit 0080185db9

View file

@ -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;