From e155ddd9180ca059c6049b87c62fb243fefdeebe Mon Sep 17 00:00:00 2001
From: Peter Eisentraut <peter_e@gmx.net>
Date: Mon, 11 Jun 2018 17:19:11 -0400
Subject: [PATCH] Adjust error message

Makes it look more similar to other ones, and avoids the need for
pluralization.
---
 src/common/controldata_utils.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/common/controldata_utils.c b/src/common/controldata_utils.c
index 0aabb0d8643..f0070513f6b 100644
--- a/src/common/controldata_utils.c
+++ b/src/common/controldata_utils.c
@@ -83,11 +83,11 @@ get_controlfile(const char *DataDir, const char *progname, bool *crc_ok_p)
 		else
 #ifndef FRONTEND
 			ereport(ERROR,
-					(errmsg("could not read file \"%s\": read %d bytes, expected %d",
+					(errmsg("could not read file \"%s\": read %d of %d",
 							ControlFilePath, r, (int) sizeof(ControlFileData))));
 #else
 		{
-			fprintf(stderr, _("%s: could not read file \"%s\": read %d bytes, expected %d\n"),
+			fprintf(stderr, _("%s: could not read file \"%s\": read %d of %d\n"),
 					progname, ControlFilePath, r, (int) sizeof(ControlFileData));
 			exit(EXIT_FAILURE);
 		}
-- 
GitLab