From: Jerome St-Louis Date: Wed, 24 Aug 2011 05:41:01 +0000 (-0400) Subject: Added a missing (uint) cast to a SetData X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=ede;a=commitdiff_plain;h=3909f06ab8da1b5841b7e4a279c9c9211c763347;hp=9b9de597abdcba0454820252e9ff803357ab1455 Added a missing (uint) cast to a SetData --- diff --git a/explorer/src/ExplorerTree.ec b/explorer/src/ExplorerTree.ec index d3993bb..3d654da 100644 --- a/explorer/src/ExplorerTree.ec +++ b/explorer/src/ExplorerTree.ec @@ -323,7 +323,7 @@ public: row.tag = (int)item; row.SetData(nameField, item); row.SetData(typeField, CopyString(item.extension)); - row.SetData(sizeField, (void *)listing.stats.size); + row.SetData(sizeField, (uint)listing.stats.size); } list.Sort(nameField, 1); }