projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f734743
)
Fix error hint style.
author
Robert Haas
<rhaas@postgresql.org>
Wed, 9 Jul 2014 15:34:47 +0000
(11:34 -0400)
committer
Robert 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
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/adt/encode.c
b/src/backend/utils/adt/encode.c
index fab4d33d07fb376d6ff48a4badeb13ef7842f400..e13cd6962d3b2c6d75a087c226a8647969e3a5e7 100644
(file)
--- a/
src/backend/utils/adt/encode.c
+++ b/
src/backend/utils/adt/encode.c
@@
-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;
}