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

dtbuilder.c.src: fix empty-body warnings

This commit is contained in:
Jon Trulson 2021-12-19 12:02:40 -07:00
parent 2559a96ee8
commit dddca18f9b

View file

@ -692,11 +692,11 @@ output_handler(STRING msg)
/*
* Free help data strings
*/
if (help_data.help_text);
if (help_data.help_text)
XtFree(help_data.help_text);
if (help_data.help_volume);
if (help_data.help_volume)
XtFree(help_data.help_volume);
if (help_data.help_locationID);
if (help_data.help_locationID)
XtFree(help_data.help_locationID);
}
else