summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-04 13:33:58 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-11-04 13:33:58 (EDT)
commitcf8d241f10ce65ba49e15f4ede20223a2066051b (patch)
tree1e2113ac3c4854e6bcfc3878baa565cd0b1fef2a /src/utils
parent7b46a6c58eb50c8952dc50d69279596c7bce7bd4 (diff)
downloadmarquee-cf8d241f10ce65ba49e15f4ede20223a2066051b.zip
marquee-cf8d241f10ce65ba49e15f4ede20223a2066051b.tar.gz
marquee-cf8d241f10ce65ba49e15f4ede20223a2066051b.tar.bz2
mq_html_input_number_d(): Fix indentation
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);
}
}