projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
720e032
)
Fix thinko in 720e0327bc
author
Andrew Dunstan
<
[email protected]
>
Sun, 25 Dec 2022 09:36:58 +0000
(
04:36
-0500)
committer
Andrew Dunstan
<
[email protected]
>
Sun, 25 Dec 2022 09:36:58 +0000
(
04:36
-0500)
contrib/isn/isn.c
patch
|
blob
|
blame
|
history
diff --git
a/contrib/isn/isn.c
b/contrib/isn/isn.c
index a86db045dec1e1652952cb8baae8b15a54d67253..271ac62d8fa073b89687e962cfc301477697c972 100644
(file)
--- a/
contrib/isn/isn.c
+++ b/
contrib/isn/isn.c
@@
-942,7
+942,7
@@
isn_out(PG_FUNCTION_ARGS)
char *result;
char buf[MAXEAN13LEN + 1];
- (void) ean2string(val, f
cinfo->context
, buf, true);
+ (void) ean2string(val, f
alse
, buf, true);
result = pstrdup(buf);
PG_RETURN_CSTRING(result);
@@
-958,7
+958,7
@@
ean13_out(PG_FUNCTION_ARGS)
char *result;
char buf[MAXEAN13LEN + 1];
- (void) ean2string(val, f
cinfo->context
, buf, false);
+ (void) ean2string(val, f
alse
, buf, false);
result = pstrdup(buf);
PG_RETURN_CSTRING(result);