From d642a3ee2ba4f4b019c14003bcfd969711fe304e Mon Sep 17 00:00:00 2001 From: Maciek Sipior Date: Thu, 23 Jan 2020 11:12:52 +0000 Subject: [PATCH] humanize: export schema arrays to include lengths Due to windows compiler choking on it otherwise --- include/libwebsockets/lws-misc.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/libwebsockets/lws-misc.h b/include/libwebsockets/lws-misc.h index fe09303e4..26b413b7e 100644 --- a/include/libwebsockets/lws-misc.h +++ b/include/libwebsockets/lws-misc.h @@ -894,19 +894,19 @@ typedef struct lws_humanize_unit { uint64_t factor; } lws_humanize_unit_t; -LWS_VISIBLE LWS_EXTERN const lws_humanize_unit_t humanize_schema_si[]; -LWS_VISIBLE LWS_EXTERN const lws_humanize_unit_t humanize_schema_si_bytes[]; -LWS_VISIBLE LWS_EXTERN const lws_humanize_unit_t humanize_schema_us[]; +LWS_VISIBLE LWS_EXTERN const lws_humanize_unit_t humanize_schema_si[7]; +LWS_VISIBLE LWS_EXTERN const lws_humanize_unit_t humanize_schema_si_bytes[7]; +LWS_VISIBLE LWS_EXTERN const lws_humanize_unit_t humanize_schema_us[8]; /** - * lws_humanize() - Convert possibly large number to himan-readable uints + * lws_humanize() - Convert possibly large number to human-readable uints * * \param buf: result string buffer * \param len: remaining length in \p buf * \param value: the uint64_t value to represent * \param schema: and array of scaling factors and units * - * This produces a concise string representation of \p value, referening the + * This produces a concise string representation of \p value, referencing the * schema \p schema of scaling factors and units to find the smallest way to * render it. *