Files

12 lines
500 B
C
Raw Permalink Normal View History

2024-02-11 19:55:48 -05:00
--- src/readstat_variable.c.orig 2023-02-20 19:09:20 UTC
2023-02-19 14:02:54 +01:00
+++ src/readstat_variable.c
2024-02-11 19:55:48 -05:00
@@ -5,7 +5,7 @@ static readstat_value_t make_double_value(double dval)
static readstat_value_t make_blank_value(void);
2023-02-19 14:02:54 +01:00
static readstat_value_t make_double_value(double dval);
-static readstat_value_t make_blank_value() {
+static readstat_value_t make_blank_value(void) {
readstat_value_t value = { .is_system_missing = 1, .v = { .double_value = NAN }, .type = READSTAT_TYPE_DOUBLE };
return value;
}