From dde9a5552bdabdfa236fb9e56f6154a4bb848796 Mon Sep 17 00:00:00 2001 From: Jerome Benoit Date: Sun, 10 Nov 2024 04:24:30 +0000 Subject: [PATCH] source typo Origin: vendor, Debian Forwarded: https://github.com/igraph/igraph/pull/2696 Comment: spelling-error-in-binary Last-Update: 2024-11-10 Correct spelling error as reported by lintian in some binraries; meant to silence lintian and eventually to be submitted to the upstream maintainer. Gbp-Pq: Name upstream-fix-lintian-spelling_error-silence.patch --- src/games/degree_sequence.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/games/degree_sequence.c b/src/games/degree_sequence.c index fd9735d..3ce9762 100644 --- a/src/games/degree_sequence.c +++ b/src/games/degree_sequence.c @@ -459,7 +459,7 @@ static igraph_error_t igraph_i_degree_sequence_game_configuration_simple_undirec IGRAPH_FINALLY(igraph_vector_ptr_destroy_all, &adjlist); for (i = 0; i < vcount; ++i) { igraph_set_t *set = IGRAPH_CALLOC(1, igraph_set_t); - IGRAPH_CHECK_OOM(set, "Insufficient memory for configuation model (simple graphs)."); + IGRAPH_CHECK_OOM(set, "Insufficient memory for configuration model (simple graphs)."); IGRAPH_CHECK(igraph_set_init(set, 0)); VECTOR(adjlist)[i] = set; IGRAPH_CHECK(igraph_set_reserve(set, VECTOR(*degseq)[i])); -- 2.30.2