From 747ab5aaeadc619986891c025e94e3d1018f9b83 Mon Sep 17 00:00:00 2001 From: Francesco Cozzuto Date: Mon, 10 Nov 2025 13:27:51 +0100 Subject: [PATCH] Remove old TODO comment --- src/message.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/message.c b/src/message.c index 00cf4ce..bbe6738 100644 --- a/src/message.c +++ b/src/message.c @@ -295,7 +295,7 @@ void message_dump(FILE *stream, ByteView msg) return; } append_hex_as_str(hash_str, old_hash); - fprintf(stream, " old_hash: %.64s\n", hash_str); // TODO: stringify + fprintf(stream, " old_hash: %.64s\n", hash_str); SHA256 new_hash; if (!binary_read(&reader, &new_hash, sizeof(new_hash))) { @@ -303,7 +303,7 @@ void message_dump(FILE *stream, ByteView msg) return; } append_hex_as_str(hash_str, new_hash); - fprintf(stream, " new_hash: %.64s\n", hash_str); // TODO: stringify + fprintf(stream, " new_hash: %.64s\n", hash_str); uint32_t num_locations; if (!binary_read(&reader, &num_locations, sizeof(num_locations))) {