dtimsstart: Fix derp in previoua fix set
authorPeter Howkins <flibble@users.sf.net>
Sat, 28 Apr 2018 22:09:45 +0000 (23:09 +0100)
committerPeter Howkins <flibble@users.sf.net>
Sat, 28 Apr 2018 22:09:45 +0000 (23:09 +0100)
cde/programs/dtimsstart/win.c

index 8979f5b52a23140d41e40965ae5b77fc47e26c77..31d8948f2079c1db2cff7ce60c30044666d8e45e 100644 (file)
@@ -1643,7 +1643,7 @@ int       put_msg_win(type, msg)
        WaitingDialogReply = True;
     }
 
-    return reply = XmCR_OK ? True : False;
+    return (reply == XmCR_OK) ? True : False;
 }