You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to update perl-DBD-pg in Fedora, but the test 12placeholders.t fails on architectures ppc64le, s390x, aarch64, armv7hl. The failure is related to the commit 'Handle backslash-escaped quotes in E'' strings' (dc83d01)
The problem is that char can equal to unsigned char on some architectures. In this case, the assignment char non_standard_strings = -1; can be undefined and the following condition is not evaluated properly.
I fixed it by replacing 'char' with 'signed char'.
The text was updated successfully, but these errors were encountered:
I tried to update perl-DBD-pg in Fedora, but the test 12placeholders.t fails on architectures ppc64le, s390x, aarch64, armv7hl. The failure is related to the commit 'Handle backslash-escaped quotes in E'' strings' (dc83d01)
The problem is that
char
can equal tounsigned char
on some architectures. In this case, the assignmentchar non_standard_strings = -1;
can be undefined and the following condition is not evaluated properly.I fixed it by replacing 'char' with 'signed char'.
The text was updated successfully, but these errors were encountered: