summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-08-15 19:40:19 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-08-16 08:25:25 +0100
commit58315b967317dffab66c696a7cef0686498a7650 (patch)
tree0a826b6b6a542c4507443e1b3f8d80860cd26e64 /desktop
parent2dc99f9ae7d48d2dc7efb502774614bae176acc0 (diff)
downloadnetsurf-58315b967317dffab66c696a7cef0686498a7650.tar.gz
netsurf-58315b967317dffab66c696a7cef0686498a7650.tar.bz2
Minor tweaking.
Diffstat (limited to 'desktop')
-rw-r--r--desktop/hotlist.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop/hotlist.c b/desktop/hotlist.c
index c25e7f732..e73dad450 100644
--- a/desktop/hotlist.c
+++ b/desktop/hotlist.c
@@ -208,8 +208,7 @@ static nserror hotlist_add_entry_internal(nsurl *url, const char *title,
*
* \param e Entry to delete
*/
-static void hotlist_delete_entry_internal(
- struct hotlist_entry *e)
+static void hotlist_delete_entry_internal(struct hotlist_entry *e)
{
assert(e != NULL);
assert(e->entry == NULL);
@@ -232,7 +231,7 @@ static nserror hotlist_tree_node_folder_cb(
switch (msg.msg) {
case TREE_MSG_NODE_DELETE:
- free((void*)f->value);
+ free((void*)f->value); /* Eww */
free(f);
break;