Fix error hint style.
authorRobert Haas <rhaas@postgresql.org>
Wed, 9 Jul 2014 15:34:47 +0000 (11:34 -0400)
committerRobert Haas <rhaas@postgresql.org>
Wed, 9 Jul 2014 15:34:47 +0000 (11:34 -0400)
Mistake caught by Tom Lane.

src/backend/utils/adt/encode.c

index fab4d33d07fb376d6ff48a4badeb13ef7842f400..e13cd6962d3b2c6d75a087c226a8647969e3a5e7 100644 (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;
 }