From 8ea2de5a304353a67fc0d62e0478b74ab30004d5 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 18 Jun 2023 09:48:18 -0500 Subject: [PATCH] Bugfix: Use correct length in string for help print. The second to last "A date like" message has the wrong length for the string being printed. --- sources/c/remove/main/common/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/c/remove/main/common/string.h b/sources/c/remove/main/common/string.h index 57245ab..5638072 100644 --- a/sources/c/remove/main/common/string.h +++ b/sources/c/remove/main/common/string.h @@ -250,7 +250,7 @@ extern "C" { #define KT_REMOVE_date_format_example_10_s_length 15 #define KT_REMOVE_date_format_example_11_s_length 13 #define KT_REMOVE_date_format_example_12_s_length 10 - #define KT_REMOVE_date_format_example_13_s_length 9 + #define KT_REMOVE_date_format_example_13_s_length 7 #define KT_REMOVE_date_format_example_14_s_length 5 extern const f_string_static_t kt_remove_date_format_example_00_s; -- 1.8.3.1