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

missing sentinel in function call; pushed upstream

--- src/iop/colortransfer.c.orig	Thu Sep 16 22:37:56 2010
+++ src/iop/colortransfer.c	Thu Sep 16 22:38:04 2010
@@ -606,17 +606,17 @@ void gui_init(struct dt_iop_module_t *self)
   gtk_box_pack_start(GTK_BOX(self->widget), GTK_WIDGET(box), TRUE, TRUE, 0);
   GtkWidget *button;
   g->spinbutton = GTK_SPIN_BUTTON(gtk_spin_button_new_with_range(1, MAXN, 1));
-  gtk_object_set(GTK_OBJECT(g->spinbutton), "tooltip-text", _("number of clusters to find in image"), NULL);
+  gtk_object_set(GTK_OBJECT(g->spinbutton), "tooltip-text", _("number of clusters to find in image"), (char *)NULL);
   gtk_box_pack_start(box, GTK_WIDGET(g->spinbutton), FALSE, FALSE, 0);
   g_signal_connect(G_OBJECT(g->spinbutton), "value-changed", G_CALLBACK(spinbutton_changed), (gpointer)self);
 
   button = gtk_button_new_with_label(_("acquire"));
-  gtk_object_set(GTK_OBJECT(button), "tooltip-text", _("analyze this image"), NULL);
+  gtk_object_set(GTK_OBJECT(button), "tooltip-text", _("analyze this image"), (char *)NULL);
   gtk_box_pack_start(box, button, TRUE, TRUE, 0);
   g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(acquire_button_pressed), (gpointer)self);
 
   g->apply_button = gtk_button_new_with_label(_("apply"));
-  gtk_object_set(GTK_OBJECT(g->apply_button), "tooltip-text", _("apply previously analyzed image look to this image"), NULL);
+  gtk_object_set(GTK_OBJECT(g->apply_button), "tooltip-text", _("apply previously analyzed image look to this image"), (char *)NULL);
   gtk_box_pack_start(box, g->apply_button, TRUE, TRUE, 0);
   g_signal_connect(G_OBJECT(g->apply_button), "clicked", G_CALLBACK(apply_button_pressed), (gpointer)self);
   FILE *f = fopen("/tmp/dt_colortransfer_loaded", "rb");
