From c292437a281f9ad7bd0a6e18aa12b37ce9369cbf Mon Sep 17 00:00:00 2001 From: Stiopa Koltsov Date: Sun, 11 Jul 2021 12:00:01 +0100 Subject: [PATCH] Remove Value_Buffer.len field It is not used. Also change `buffer` field type to avoid confusion. --- support/refc/datatypes.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/support/refc/datatypes.h b/support/refc/datatypes.h index e05b366ea..7a285e903 100644 --- a/support/refc/datatypes.h +++ b/support/refc/datatypes.h @@ -176,8 +176,7 @@ typedef struct typedef struct { Value_header header; - size_t len; - char *buffer; + void *buffer; // *Buffer } Value_Buffer; typedef struct