From: Jerome Benoit Date: Sun, 9 Mar 2025 16:12:59 +0000 (+0000) Subject: source typo X-Git-Tag: archive/raspbian/0.10.15+ds-3+rpi1^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a46d63cd4f41757b557ad3c3cc78bd11c329e51e;p=igraph.git 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 --- 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]));