aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-29 07:53:48 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-29 07:53:48 +0000
commitcd490634730695bb3e87c20e0c1b815909be27f2 (patch)
tree6230113ec6e11ee94c036cab8da3b813d853e4ff /epan/ftypes
parentcc948586bf33607f9dad86d66000d9834800cdd2 (diff)
Revert r29614 until I figure out why buildbot doesn't like it
svn path=/trunk/; revision=29615
Diffstat (limited to 'epan/ftypes')
-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 6b7890ca46..537a1b27fe 100644
--- a/epan/ftypes/ftype-double.c
+++ b/epan/ftypes/ftype-double.c
@@ -95,7 +95,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, "%." G_STRINGIFY(FLT_DIG) "g", fv->value.floating);
+ sprintf(buf, "%." STRINGIFY(FLT_DIG) "g", fv->value.floating);
}
static int
@@ -113,7 +113,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, "%." G_STRINGIFY(DBL_DIG) "g", fv->value.floating);
+ sprintf(buf, "%." STRINGIFY(DBL_DIG) "g", fv->value.floating);
}
static gboolean