aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-double.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-09 14:37:13 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-09 14:37:13 +0000
commit0b0bbf096583ddb9ef0e660cf052e28d19bd212d (patch)
tree489198af1449d68e3f1d609fc2a129f865a5c14e /epan/ftypes/ftype-double.c
parent3b2e51942297ad9406fa8f569ccf0ac845416e2a (diff)
Replace STRINGIFY with glib version.
svn path=/trunk/; revision=53193
Diffstat (limited to 'epan/ftypes/ftype-double.c')
-rw-r--r--epan/ftypes/ftype-double.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/ftypes/ftype-double.c b/epan/ftypes/ftype-double.c
index 1e517d27bd..6c81838cb9 100644
--- a/epan/ftypes/ftype-double.c
+++ b/epan/ftypes/ftype-double.c
@@ -93,7 +93,7 @@ float_val_repr_len(fvalue_t *fv _U_, ftrepr_t rtype _U_)
static void
float_val_to_repr(fvalue_t *fv, ftrepr_t rtype _U_, char *buf)
{
- sprintf(buf, "%." STRINGIFY(FLT_DIG) "g", fv->value.floating);
+ sprintf(buf, "%." G_STRINGIFY(FLT_DIG) "g", fv->value.floating);
}
static int
@@ -111,7 +111,7 @@ double_val_repr_len(fvalue_t *fv _U_, ftrepr_t rtype _U_)
static void
double_val_to_repr(fvalue_t *fv, ftrepr_t rtype _U_, char *buf)
{
- sprintf(buf, "%." STRINGIFY(DBL_DIG) "g", fv->value.floating);
+ sprintf(buf, "%." G_STRINGIFY(DBL_DIG) "g", fv->value.floating);
}
static gboolean