diff options
author | Sadie Powell <sadie@witchery.services> | 2024-01-08 13:06:23 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-01-08 13:11:50 +0000 |
commit | f083795c79fc062951d0253b4babf7e3b48c6ccb (patch) | |
tree | d40d77a317f31e7d8acb6db3df85dbd3e3efbda9 /include/language.h | |
parent | 5db79c1e242d4c06d1aeb2b09f99b8254b7fb5de (diff) |
Fix various format string issues.
Diffstat (limited to 'include/language.h')
-rw-r--r-- | include/language.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/language.h b/include/language.h index 965a546c0..f03f6cb8e 100644 --- a/include/language.h +++ b/include/language.h @@ -111,9 +111,9 @@ namespace Language #define CHAN_INFO_HEADER _("Information for channel \002%s\002:") #define CHAN_EXCEPTED _("\002%s\002 matches an except on %s and cannot be banned until the except has been removed.") #define MEMO_NEW_X_MEMO_ARRIVED _("There is a new memo on channel %s.\n" \ - "Type \002%s%s READ %s %d\002 to read it.") + "Type \002%s%s READ %s %zu\002 to read it.") #define MEMO_NEW_MEMO_ARRIVED _("You have a new memo from %s.\n" \ - "Type \002%s%s READ %d\002 to read it.") + "Type \002%s%s READ %zu\002 to read it.") #define MEMO_HAVE_NO_MEMOS _("You have no memos.") #define MEMO_X_HAS_NO_MEMOS _("%s has no memos.") #define MEMO_SEND_DISABLED _("Sorry, memo sending is temporarily disabled.") |