diff options
Diffstat (limited to 'strings/decimal.c')
-rw-r--r-- | strings/decimal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/strings/decimal.c b/strings/decimal.c index 42dc33e5ac6..99b7ccd3249 100644 --- a/strings/decimal.c +++ b/strings/decimal.c @@ -952,12 +952,12 @@ int decimal2double(decimal_t *from, double *to) rc = decimal2string(from, strbuf, &len, 0, 0, 0); end= strbuf + len; - + DBUG_PRINT("info", ("interm.: %s", strbuf)); *to= my_strtod(strbuf, &end, &error); - - DBUG_PRINT("info", ("result: %f (%lx)", *to, *(ulong *)to)); + + DBUG_PRINT("info", ("result: %f", *to)); return (rc != E_DEC_OK) ? rc : (error ? E_DEC_OVERFLOW : E_DEC_OK); } |