X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdatasheet.c;h=ef2024873b72eb432f35a9164009e6b41ea7d36b;hb=2053ecc53ff35591cdba70cf20d43d16ad680367;hp=2847703d1e8f432556ae70a428a167a6ed56599b;hpb=d0f2ab98f2b05a4641cb0d1d042fbe2ad89444aa;p=pspp diff --git a/src/data/datasheet.c b/src/data/datasheet.c index 2847703d1e..ef2024873b 100644 --- a/src/data/datasheet.c +++ b/src/data/datasheet.c @@ -175,7 +175,7 @@ value_to_data (const union value *value_, int width) if (width == 0) return &value->f; else - return value_str_rw (value, width); + return value->s; } /* Returns the number of bytes needed to store all the values in @@ -604,8 +604,8 @@ datasheet_get_value (const struct datasheet *ds, casenumber row, successful, false on I/O error. On failure, ROW might be partially modified or corrupted. */ bool -datasheet_put_value (struct datasheet *ds UNUSED, casenumber row UNUSED, - size_t column UNUSED, const union value *value UNUSED) +datasheet_put_value (struct datasheet *ds, casenumber row, + size_t column, const union value *value) { return rw_case (ds, OP_WRITE, row, column, 1, (union value *) value); }