$OpenBSD: patch-src_iop_clahe_c,v 1.1.1.1 2010/09/17 21:37:19 sthen Exp $

missing sentinel in function call; pushed upstream

--- src/iop/clahe.c.orig	Thu Sep 16 22:37:56 2010
+++ src/iop/clahe.c	Thu Sep 16 22:38:04 2010
@@ -379,8 +379,8 @@ void gui_init(struct dt_iop_module_t *self)
   
   gtk_box_pack_start(GTK_BOX(g->vbox2), GTK_WIDGET(g->scale1), TRUE, TRUE, 0);
   gtk_box_pack_start(GTK_BOX(g->vbox2), GTK_WIDGET(g->scale2), TRUE, TRUE, 0);
-  gtk_object_set(GTK_OBJECT(g->scale1), "tooltip-text", _("size of features to preserve"), NULL);
-  gtk_object_set(GTK_OBJECT(g->scale2), "tooltip-text", _("strength of the effect"), NULL);
+  gtk_object_set(GTK_OBJECT(g->scale1), "tooltip-text", _("size of features to preserve"), (char *)NULL);
+  gtk_object_set(GTK_OBJECT(g->scale2), "tooltip-text", _("strength of the effect"), (char *)NULL);
   
   g_signal_connect (G_OBJECT (g->scale1), "value-changed",
                     G_CALLBACK (radius_callback), self);
