From: Jakub Wilk Date: Mon, 26 Jun 2023 18:00:43 +0000 (+0200) Subject: lib/strutils: fix typo X-Git-Tag: v2.40-rc1~361 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1fc5d61f016c7e6b7c98e8095970859cfe0e725;p=thirdparty%2Futil-linux.git lib/strutils: fix typo --- diff --git a/lib/strutils.c b/lib/strutils.c index f6f299db4c..21751fd89e 100644 --- a/lib/strutils.c +++ b/lib/strutils.c @@ -397,7 +397,7 @@ int ul_strtou32(const char *str, uint32_t *num, int base) * Convert strings to numbers in defined range and print message on error. * * These functions are used when we read input from users (getopt() etc.). It's - * better to consolidate the code and keep it all based on 64-bit numbers then + * better to consolidate the code and keep it all based on 64-bit numbers than * implement it for 32 and 16-bit numbers too. */ int64_t str2num_or_err(const char *str, int base, const char *errmesg,