aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate/mate_grammar.lemon
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mate/mate_grammar.lemon')
-rw-r--r--plugins/mate/mate_grammar.lemon4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mate/mate_grammar.lemon b/plugins/mate/mate_grammar.lemon
index eea18aa2ae..83e280edbc 100644
--- a/plugins/mate/mate_grammar.lemon
+++ b/plugins/mate/mate_grammar.lemon
@@ -602,11 +602,11 @@ pdu_name(A) ::= NAME(B). {
time_value(A) ::= FLOATING(B). {
- A = (float) strtod(B,NULL);
+ A = (float) g_ascii_strtod(B,NULL);
}
time_value(A) ::= INTEGER(B). {
- A = (float) strtod(B,NULL);
+ A = (float) g_ascii_strtod(B,NULL);
}
/************* GOG