From 7d164425870d353a6d6e5ed450f4a4c9fa9c98ba Mon Sep 17 00:00:00 2001 From: Alisha Nanda Date: Mon, 22 Jan 2024 19:23:38 +0000 Subject: [PATCH] Decrease number of inlined elements in grpc_slice_buffer from 7->6 --- include/grpc/impl/slice_type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/grpc/impl/slice_type.h b/include/grpc/impl/slice_type.h index 7d9dfb78123..4776f4b6c4d 100644 --- a/include/grpc/impl/slice_type.h +++ b/include/grpc/impl/slice_type.h @@ -74,7 +74,7 @@ struct grpc_slice { } data; }; -#define GRPC_SLICE_BUFFER_INLINE_ELEMENTS 7 +#define GRPC_SLICE_BUFFER_INLINE_ELEMENTS 6 /** Represents an expandable array of slices, to be interpreted as a single item. */