summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/html.c b/src/utils/html.c
index 20a1c96..4fd71ea 100644
--- a/src/utils/html.c
+++ b/src/utils/html.c
@@ -674,9 +674,9 @@ mq_html_input_number_d(const gchar *name, const gchar *label,
name, label, name, name, min, step, max, value);
} else {
return g_strdup_printf(
- "<input type=\"number\" name=\"%s\" id=\"%s\" "
- "min=\"%f\" step=\"%f\" max=\"%f\" "
- "value=\"%f\">\n",
+ "<input type=\"number\" name=\"%s\" id=\"%s\" "
+ "min=\"%f\" step=\"%f\" max=\"%f\" "
+ "value=\"%f\">\n",
name, name, min, step, max, value);
}
}