summaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-03-12 19:17:09 -0800
committerIan Lance Taylor <iant@golang.org>2021-03-12 20:06:50 -0800
commit3972574f11e5d49f12ad88faf2346f77ffc6e523 (patch)
tree7af3fb873fca7a1ffc829eb6c911de7c040831a6 /libgo
parent8c2cf7f4f7ea749513a1d466a8ef668bc1c2f67c (diff)
misc/cgo/testcarchive: don't use == for string equality in C code
Backport of https://golang.org/cl/300993. For PR go/99553 Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/301458
Diffstat (limited to 'libgo')
-rw-r--r--libgo/misc/cgo/testcarchive/testdata/main_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/misc/cgo/testcarchive/testdata/main_unix.c b/libgo/misc/cgo/testcarchive/testdata/main_unix.c
index b23ac1c2428..bd00f9d2339 100644
--- a/libgo/misc/cgo/testcarchive/testdata/main_unix.c
+++ b/libgo/misc/cgo/testcarchive/testdata/main_unix.c
@@ -36,7 +36,7 @@ int install_handler() {
return 2;
}
// gccgo does not set SA_ONSTACK for SIGSEGV.
- if (getenv("GCCGO") == "" && (osa.sa_flags&SA_ONSTACK) == 0) {
+ if (getenv("GCCGO") == NULL && (osa.sa_flags&SA_ONSTACK) == 0) {
fprintf(stderr, "Go runtime did not install signal handler\n");
return 2;
}