Fix constness of datasheet_resize_column arguments
[pspp] / src / ui / gui / psppire-data-store.c
index f3543f13f1c65551bb3fae638daff4be93903e1e..69f64575e0df3b13b686ead025a10ce20a4c05c2 100644 (file)
@@ -217,9 +217,9 @@ struct resize_datum_aux
   };
 
 static void
-resize_datum (const union value *old, union value *new, void *aux_)
+resize_datum (const union value *old, union value *new, const void *aux_)
 {
-  struct resize_datum_aux *aux = aux_;
+  const struct resize_datum_aux *aux = aux_;
 
   if (aux->new_width == 0)
     {