viking

webkit based web browser for Enlightenment
Log | Files | Refs | LICENSE

commit 5b9a21d4cfc3206f8d5e8700bc9c9b605dda46d1
parent 57e385066bc748c92ae79344ac07eaa961a5d279
Author: Kyle Milz <kmilz@ucalgary.ca>
Date:   Wed,  3 Oct 2012 13:36:32 -0600

squash a warning

Diffstat:
Msrc/utilities.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/utilities.c b/src/utilities.c @@ -1431,7 +1431,7 @@ status_flags(void *data) strcat(flags, bd->proxy_enabled ? "P" : " "); strcat(flags, bd->inspector_enabled ? "I" : " "); // strcat(flags, bd->history_enabled ? "H" : " "); - Hist_Item *item = hist_items_get(bd->window->app, ewk_view_uri_get(bd->view)); + Hist_Item *item = hist_items_get(bd->window->app->history, ewk_view_uri_get(bd->view)); strcat(flags, (item && hist_item_enabled_get(item)) ? "H" : " "); strcat(flags, bd->cookies_enabled ? "C" : " "); end = strdup_printf("] %2i ", bd->buf_number);