From eb48c20f8d1ee3ab0252d0f8d570af38aae26db4 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 7 Jul 2017 22:16:42 +0200 Subject: [PATCH] Gb -> GB --- src/minisign.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minisign.c b/src/minisign.c index 6cbbbfe..141013a 100644 --- a/src/minisign.c +++ b/src/minisign.c @@ -108,7 +108,7 @@ message_load(size_t *message_len, const char *message_file, int hashed) } assert(hashed == 0); if (message_len_ > (off_t) 1L << 30) { - exit_msg("Data has to be smaller than 1 Gb. Or use the -H option."); + exit_msg("Data has to be smaller than 1 GB. Or use the -H option."); } if ((uintmax_t) message_len_ > (uintmax_t) SIZE_MAX || message_len_ < (off_t) 0) {