From: Jürg Billeter Date: Fri, 16 Jul 2010 21:29:02 +0000 (+0200) Subject: dova: Use decimal128 instead of _Decimal128 X-Git-Tag: 0.9.4~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d4a012d67d1af248ef82f3a61fc384cff5be5e9;p=thirdparty%2Fvala.git dova: Use decimal128 instead of _Decimal128 --- diff --git a/codegen/valadovastructmodule.vala b/codegen/valadovastructmodule.vala index f0746b86a..f610b40f6 100644 --- a/codegen/valadovastructmodule.vala +++ b/codegen/valadovastructmodule.vala @@ -49,7 +49,7 @@ internal class Vala.DovaStructModule : DovaBaseModule { return; } else if (st.is_decimal_floating_type ()) { // typedef for decimal floating types - st.set_cname ("_Decimal%d".printf (st.width)); + st.set_cname ("decimal%d".printf (st.width)); return; } else if (st.is_floating_type ()) { // typedef for generic floating types