Skip to content
Snippets Groups Projects
Commit ec8c38a7 authored by Moe Jette's avatar Moe Jette
Browse files

Added support for float output in logs. - Jette

parent b6f1a7b2
No related branches found
No related tags found
No related merge requests found
...@@ -174,6 +174,12 @@ static char *vxstrfmt(const char *fmt, va_list ap) ...@@ -174,6 +174,12 @@ static char *vxstrfmt(const char *fmt, va_list ap)
xstrcat(buf, va_arg(ap, char *)); xstrcat(buf, va_arg(ap, char *));
break; break;
case 'f': /* "%f" => float (actually double) */
snprintf(tmp2, sizeof(tmp2), "%f",
va_arg(ap, double));
xstrcat(buf, tmp2);
break;
default: /* try to handle the rest */ default: /* try to handle the rest */
/* back up to `%' char */ /* back up to `%' char */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment