summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-01-22 14:38:12 +0000
committerVincent Sanders <vince@kyllikki.org>2016-01-25 15:49:31 +0000
commit822493af0d301fbfe05bae11b9ae12914171057f (patch)
tree803f3162c943aaf78d02a7cc63821fe1a3c416a1
parent9e1622a679031d2bb2205ba42e23269600bc9a3a (diff)
downloadnetsurf-822493af0d301fbfe05bae11b9ae12914171057f.tar.gz
netsurf-822493af0d301fbfe05bae11b9ae12914171057f.tar.bz2
fixup some empty logging calls in atari hotlist code
-rw-r--r--atari/hotlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atari/hotlist.c b/atari/hotlist.c
index 265491191..380e1b6c1 100644
--- a/atari/hotlist.c
+++ b/atari/hotlist.c
@@ -72,13 +72,13 @@ static struct atari_treeview_callbacks atari_hotlist_treeview_callbacks = {
static nserror atari_hotlist_init_phase2(struct core_window *cw,
struct core_window_callback_table *cb_t)
{
- LOG("");
+ LOG("cw:%p", cw);
return(hotlist_init(cb_t, cw, hl.path));
}
static void atari_hotlist_finish(struct core_window *cw)
{
- LOG("");
+ LOG("cw:%p", cw);
hotlist_fini(hl.path);
}
@@ -123,7 +123,7 @@ static short handle_event(GUIWIN *win, EVMULT_OUT *ev_out, short msg[8])
GRECT tb_area;
GUIWIN * gemtk_win;
- LOG("");
+ LOG("gw:%p", win);
tv = (struct atari_treeview_window*) gemtk_wm_get_user_data(win);
cw = (struct core_window *)tv;