summaryrefslogtreecommitdiff
path: root/amiga/history_local.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/history_local.c')
-rwxr-xr-xamiga/history_local.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/amiga/history_local.c b/amiga/history_local.c
index 93af92e0e..2fb1ba677 100755
--- a/amiga/history_local.c
+++ b/amiga/history_local.c
@@ -98,11 +98,17 @@ static void ami_history_redraw(struct history_window *hw)
/* exported interface documented in amiga/history_local.h */
-void ami_history_open(struct gui_window *gw, struct history *history)
+void ami_history_open(struct gui_window *gw)
{
+ struct history *history;
int width, height;
- assert(history);
+ if (gw->bw == NULL)
+ return;
+
+ history = browser_window_get_history(gw->bw);
+ if (history == NULL)
+ return;
if(!gw->hw)
{