From 52ffae7ca08e15b6ec3b84d5c8c9ec130a2a52f3 Mon Sep 17 00:00:00 2001 From: Dmitriy Musatkin <63878209+DmitriyMusatkin@users.noreply.github.com> Date: Mon, 20 Nov 2023 23:58:51 -0500 Subject: [PATCH] Update source/s3_buffer_pool.c Co-authored-by: Michael Graeb --- source/s3_buffer_pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/s3_buffer_pool.c b/source/s3_buffer_pool.c index 2a95c6ad5..0141a70db 100644 --- a/source/s3_buffer_pool.c +++ b/source/s3_buffer_pool.c @@ -110,7 +110,7 @@ struct aws_s3_buffer_pool *aws_s3_buffer_pool_new( if (!(chunk_size == 0 || (chunk_size > (1024) && chunk_size % 1024 == 0))) { AWS_LOGF_ERROR( AWS_LS_S3_CLIENT, - "Failed to initialize buffer pool. Chunk size must be either 0 or more than 1 kb and size must be 1 KB " + "Failed to initialize buffer pool. Chunk size must be either 0 or more than 1 KB and size must be 1 KB " "aligned."); aws_raise_error(AWS_ERROR_INVALID_ARGUMENT); return NULL;