From e381a7beeacb070f1816989dcb0e2c0ae6eccaea Mon Sep 17 00:00:00 2001 From: Alfred G <28123637+alfred2g@users.noreply.github.com> Date: Thu, 26 Oct 2023 09:45:07 -0700 Subject: [PATCH] Comment: fix (#1069) --- include/aws/common/hash_table.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/aws/common/hash_table.h b/include/aws/common/hash_table.h index 195c9bdff..a23c4f966 100644 --- a/include/aws/common/hash_table.h +++ b/include/aws/common/hash_table.h @@ -276,6 +276,7 @@ int aws_hash_table_create( * * Returns AWS_OP_SUCCESS if an item was found or created. * Raises AWS_ERROR_OOM if hash table expansion was required and memory + * allocation failed. */ AWS_COMMON_API int aws_hash_table_put(struct aws_hash_table *map, const void *key, void *value, int *was_created);