From 6122bff7fa5a2d39cc275f632a66ff62b6a32b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 16 Sep 2020 21:26:12 +0700 Subject: [PATCH] compat: correct HAVE_HUMANIZE_NUMBER typo It should be HAVE_HUMANIZE_NUMBER instead of HAVE_HUMANIZE_HUMBER, from the name of humanize_number(3). It's mispelt only in this file, the configure script gets it correctly. Closes: #334 [via git-merge-pr] --- include/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/compat.h b/include/compat.h index d81b82bc..cedd1be2 100644 --- a/include/compat.h +++ b/include/compat.h @@ -27,7 +27,7 @@ char HIDDEN *strcasestr(const char *, const char *); int HIDDEN vasprintf(char **, const char *, va_list); #endif -#ifndef HAVE_HUMANIZE_HUMBER +#ifndef HAVE_HUMANIZE_NUMBER #define HN_DECIMAL 0x01 #define HN_NOSPACE 0x02 #define HN_B 0x04