Silence a warning.

This commit is contained in:
Alexander Langer 2001-06-19 16:31:40 +00:00
parent 2463e32518
commit 024a394fe0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=44229

View file

@ -0,0 +1,11 @@
--- lib/dialogs.h.old Tue Jun 19 18:29:26 2001
+++ lib/dialogs.h Tue Jun 19 18:29:41 2001
@@ -407,7 +407,7 @@
TSItem( const char *aValue, TSItem *aNext )
{ value = newStr(aValue); next = aNext; }
- ~TSItem() { delete (void *)value; }
+ ~TSItem() { delete value; }
const char *value;
TSItem *next;