We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 720e032 commit 361ec43Copy full SHA for 361ec43
contrib/isn/isn.c
@@ -942,7 +942,7 @@ isn_out(PG_FUNCTION_ARGS)
942
char *result;
943
char buf[MAXEAN13LEN + 1];
944
945
- (void) ean2string(val, fcinfo->context, buf, true);
+ (void) ean2string(val, false, buf, true);
946
947
result = pstrdup(buf);
948
PG_RETURN_CSTRING(result);
@@ -958,7 +958,7 @@ ean13_out(PG_FUNCTION_ARGS)
958
959
960
961
- (void) ean2string(val, fcinfo->context, buf, false);
+ (void) ean2string(val, false, buf, false);
962
963
964
0 commit comments