Fix error hint style.

Mistake caught by Tom Lane.
This commit is contained in:
Robert Haas 2014-07-09 11:34:47 -04:00
parent f73474382c
commit b043985b7a
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ b64_decode(const char *src, unsigned len, char *dst)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("invalid base64 end sequence"),
errhint("input data is missing padding, truncated, or otherwise corrupted")));
errhint("Input data is missing padding, truncated, or otherwise corrupted.")));
return p - dst;
}