diff --git a/ext/gsl_native/tamu_anova.c b/ext/gsl_native/tamu_anova.c index 123ef20d..5f9c9f88 100644 --- a/ext/gsl_native/tamu_anova.c +++ b/ext/gsl_native/tamu_anova.c @@ -32,7 +32,7 @@ VALUE rb_tamu_anova_alloc(int argc, VALUE *argv, VALUE klass) VALUE rb_tamu_anova_printtable(VALUE *vTable) { struct tamu_anova_table *table; - Data_Get_Struct(vTable, struct tamu_anova_table, table); + Data_Get_Struct(*vTable, struct tamu_anova_table, table); tamu_anova_printtable(*table); return Qtrue; }