From: Kevin Day Date: Sun, 18 Jun 2023 14:48:18 +0000 (-0500) Subject: Bugfix: Use correct length in string for help print. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=8ea2de5a304353a67fc0d62e0478b74ab30004d5;p=kevux-tools 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. --- 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;