From 7966692d87241d6fe1da761a3da24b79dc35d630 Mon Sep 17 00:00:00 2001 From: Julien Fischer Date: Fri, 27 Mar 2026 20:31:33 +1100 Subject: [PATCH] Fix copy-and-paste error. runtime/mercury_hash_table.c: As above. --- runtime/mercury_hash_table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/mercury_hash_table.c b/runtime/mercury_hash_table.c index 32ad1381f..b4fa178ea 100644 --- a/runtime/mercury_hash_table.c +++ b/runtime/mercury_hash_table.c @@ -1,7 +1,7 @@ // vim: ts=4 sw=4 expandtab ft=c // Copyright (C) 1993-2000, 2004-2006 The University of Melbourne. -// Copyright (C) 2016, 2018 The Mercury team. +// Copyright (C) 2016, 2018, 2026 The Mercury team. // This file is distributed under the terms specified in COPYING.LIB. // Hash table handling module. @@ -69,7 +69,7 @@ MR_ht_insert_table(const MR_Hash_Table *table, void *entry) #ifdef MR_HASHDEBUG if (! (0 <= h && h < table->MR_ht_size)) { - fprintf(stderr, "internal error: bad hash index in lookup_table: " + fprintf(stderr, "internal error: bad hash index in insert_table: " "%d, table size %d\n", h, table->MR_ht_size); }