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

View File

@ -325,7 +325,7 @@ b64_decode(const char *src, unsigned len, char *dst)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("invalid base64 end sequence"), 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; return p - dst;
} }