From 343f2c51a4cc44aa5ae3a813ae1c908b2f01b9f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 5 Feb 2022 16:59:42 +0100 Subject: [PATCH] config: s/of the form/on the form/ --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 7da56345..18f3a5df 100644 --- a/config.c +++ b/config.c @@ -724,7 +724,7 @@ value_to_pt_or_px(struct context *ctx, struct pt_or_px *res) long value = strtol(s, &end, 10); if (!(errno == 0 && end == s + len - 2)) { - LOG_CONTEXTUAL_ERR("invalid px value (must be of the form 12px)"); + LOG_CONTEXTUAL_ERR("invalid px value (must be on the form 12px)"); return false; } res->pt = 0;