From 77c297a8f816ebe04e4283c34d0910a6f6724fec Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Thu, 3 May 2012 09:44:15 +0200 Subject: [PATCH] Fix typo in GIRARA_LIST_FOREACH --- page-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page-widget.c b/page-widget.c index 60ab0fc..580ccb5 100644 --- a/page-widget.c +++ b/page-widget.c @@ -709,7 +709,7 @@ zathura_page_widget_popup_menu(GtkWidget* widget, GdkEventButton* event) if (rect.x1 <= event->x && rect.x2 >= event->x && rect.y1 <= event->y && rect.y2 >= event->y) { annotation = annot; } - GIRARA_LIST_FOREACH_END(priv->annotations.list, zathura_annotation_t*, iter, annotation); + GIRARA_LIST_FOREACH_END(priv->annotations.list, zathura_annotation_t*, iter, annot); if (annotation != NULL) { menu_add_item(menu, widget, _("Annotation properties"), cb_menu_annotation_properties);