diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-07-02 21:12:46 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-07-02 21:12:46 +0300 |
commit | 2b44306315cf84479f735b12f78499616172dbb9 (patch) | |
tree | 96ae8a6b3c42cd1791b70f32fb6a0de93fceaac3 /src/backend/utils/time/snapmgr.c | |
parent | 41f4a0ab789463971add986dbc778d77ec5a0ef4 (diff) |
Assorted message style improvements
Diffstat (limited to 'src/backend/utils/time/snapmgr.c')
-rw-r--r-- | src/backend/utils/time/snapmgr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/time/snapmgr.c b/src/backend/utils/time/snapmgr.c index 4652915c4e3..6281c45721e 100644 --- a/src/backend/utils/time/snapmgr.c +++ b/src/backend/utils/time/snapmgr.c @@ -1011,7 +1011,7 @@ ImportSnapshot(const char *idstr) if (strspn(idstr, "0123456789ABCDEF-") != strlen(idstr)) ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), - errmsg("invalid snapshot identifier \"%s\"", idstr))); + errmsg("invalid snapshot identifier: \"%s\"", idstr))); /* OK, read the file */ snprintf(path, MAXPGPATH, SNAPSHOT_EXPORT_DIR "/%s", idstr); @@ -1020,7 +1020,7 @@ ImportSnapshot(const char *idstr) if (!f) ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), - errmsg("invalid snapshot identifier \"%s\"", idstr))); + errmsg("invalid snapshot identifier: \"%s\"", idstr))); /* get the size of the file so that we know how much memory we need */ if (fstat(fileno(f), &stat_buf)) |