mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
dtmail: fix warning: comparison is always false
This warning was caused by a typo: warning: comparison is always false due to limited range of data type
This commit is contained in:
parent
22a0f8f497
commit
c70978e986
1 changed files with 1 additions and 1 deletions
|
@ -963,7 +963,7 @@ dtb_help_back_hdlr(
|
|||
** Parse the combined volume/locationID string. Disable the "More..."
|
||||
** button if there isn't any help info, and enable it if there is.
|
||||
*/
|
||||
if( buffer == 0 || (*buffer == '/0') ||
|
||||
if( buffer == 0 || (*buffer == '\0') ||
|
||||
(cp=strrchr(buffer,'/')) == (char *)NULL) {
|
||||
XtSetSensitive(more_button,False);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue