Removed spurious space change.

This commit is contained in:
fcostaoliveira 2025-04-27 04:47:51 +01:00
parent c3b0f5a443
commit 537f8853ed
1 changed files with 1 additions and 6 deletions

View File

@ -58,11 +58,6 @@
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#if __GNUC__ >= 3
#define likely(x) __builtin_expect(!!(x), 1)
#else
#define likely(x) (x)
#endif
/* Algorithm parameters. */
@ -2153,7 +2148,7 @@ hnswNode *hnsw_insert_serialized(HNSW *index, void *vector, uint64_t *params, ui
* It could happen in select_neighbors() that we over-allocate the
* node under very unlikely to happen conditions. */
if (max_links > node->layers[i].max_links) {
hnswNode **new_links = hrealloc(node->layers[i].links,
hnswNode **new_links = hrealloc(node->layers[i].links,
sizeof(hnswNode*) * max_links);
if (!new_links) {
hnsw_node_free(node);