X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fdata%2Fdatasheet-test.c;h=532b883faa1980f0671e249a27a9b1d71c5728ee;hb=ff85c7d77222c0ea90a9fc35b36eebd34eca52d2;hp=98be04fe44b25c73a7cb608596b02296b3b3894c;hpb=d0b91eae59319ab2756d0d43b9cb15eb9cd3c234;p=pspp diff --git a/tests/data/datasheet-test.c b/tests/data/datasheet-test.c index 98be04fe44..532b883faa 100644 --- a/tests/data/datasheet-test.c +++ b/tests/data/datasheet-test.c @@ -424,9 +424,12 @@ datasheet_mc_init (struct mc *mc) if (params->backing_rows == 0 && params->n_backing_cols == 0) { /* Create unbacked datasheet. */ + struct caseproto *proto; ds = datasheet_create (NULL); mc_name_operation (mc, "empty datasheet"); - check_datasheet (mc, ds, NULL, 0, caseproto_create ()); + proto = caseproto_create (); + check_datasheet (mc, ds, NULL, 0, proto); + caseproto_unref (proto); } else { @@ -482,9 +485,9 @@ struct resize_cb_aux }; static void -resize_cb (const union value *old_value, union value *new_value, void *aux_) +resize_cb (const union value *old_value, union value *new_value, const void *aux_) { - struct resize_cb_aux *aux = aux_; + const struct resize_cb_aux *aux = aux_; value_from_param (new_value, aux->new_width, value_hash (old_value, aux->old_width, 0));