aboutsummaryrefslogtreecommitdiffstats
path: root/src/numfmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/numfmt.c')
-rw-r--r--src/numfmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numfmt.c b/src/numfmt.c
index 3fc027c7e..4f72facb9 100644
--- a/src/numfmt.c
+++ b/src/numfmt.c
@@ -1279,7 +1279,7 @@ process_suffixed_number (char *text, long double *result,
{
char *possible_suffix = text + strlen (text) - strlen (suffix);
- if (STREQ (suffix, possible_suffix))
+ if (streq (suffix, possible_suffix))
{
/* trim suffix, ONLY if it's at the end of the text. */
*possible_suffix = '\0';