Skip to content

Commit b043985

Browse files
committed
Fix error hint style.
Mistake caught by Tom Lane.
1 parent f734743 commit b043985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/encode.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ b64_decode(const char *src, unsigned len, char *dst)
325325
ereport(ERROR,
326326
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
327327
errmsg("invalid base64 end sequence"),
328-
errhint("input data is missing padding, truncated, or otherwise corrupted")));
328+
errhint("Input data is missing padding, truncated, or otherwise corrupted.")));
329329

330330
return p - dst;
331331
}

0 commit comments

Comments
 (0)