source typo
authorJerome Benoit <calculus@rezozer.net>
Sun, 9 Mar 2025 16:12:59 +0000 (16:12 +0000)
committerJerome Benoit <calculus@rezozer.net>
Sun, 9 Mar 2025 16:12:59 +0000 (16:12 +0000)
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

index fd9735dfd7ebdad602aba701e6e5bb4b8863fc90..3ce976267de005a7e96b75d76dbf835e50114b56 100644 (file)
@@ -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]));