Author: locilka Date: Tue Jun 3 15:35:03 2008 New Revision: 48011
URL: http://svn.opensuse.org/viewcvs/yast?rev=48011&view=rev Log: 'if (aborted)' evaluates to non-boolean 'nil' (VOID)
Modified: trunk/installation/src/modules/ImageInstallation.ycp
Modified: trunk/installation/src/modules/ImageInstallation.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/src/modules/ImageIns... ============================================================================== --- trunk/installation/src/modules/ImageInstallation.ycp (original) +++ trunk/installation/src/modules/ImageInstallation.ycp Tue Jun 3 15:35:03 2008 @@ -545,7 +545,7 @@ progress (num, 100); });
- if (aborted) { + if (aborted == true) { return nil; }
yast-commit@lists.opensuse.org