From ca56b1d161b2cac32f33810175b793972d116154 Mon Sep 17 00:00:00 2001 From: Michael Meyer Date: Thu, 26 Oct 2023 22:04:02 -0400 Subject: [PATCH] Make c_vision_clears const char *const Everything else in c_commmon_strings had this qualifier, but c_vision_clears was just const char *. There doesn't seem to be any reason for that so change it to be consistent with the others. --- include/hack.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/hack.h b/include/hack.h index c281fa2eb..8cd0b0e17 100644 --- a/include/hack.h +++ b/include/hack.h @@ -273,8 +273,8 @@ struct c_common_strings { const char *const c_nothing_happens, *const c_nothing_seems_to_happen, *const c_thats_enough_tries, *const c_silly_thing_to, *const c_shudder_for_moment, *const c_something, *const c_Something, - *const c_You_can_move_again, *const c_Never_mind, *c_vision_clears, - *const c_the_your[2], *const c_fakename[2]; + *const c_You_can_move_again, *const c_Never_mind, + *const c_vision_clears, *const c_the_your[2], *const c_fakename[2]; }; struct container {