aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Donovan <adonovan@google.com>2014-10-30 14:08:55 -0400
committerAlan Donovan <adonovan@google.com>2014-10-30 14:08:55 -0400
commita14ae4451700a690a2ca075d585d55d60f0d46e3 (patch)
tree65666659ea647612d1face2c7abf8887b795ecf3
parent09f6f05c1fdd394ec512642e0cf086e0cf2d3d79 (diff)
downloadgo-a14ae4451700a690a2ca075d585d55d60f0d46e3.tar.gz
go-a14ae4451700a690a2ca075d585d55d60f0d46e3.zip
misc/cgo/test: fix bad C test code that fails on some configurations
LGTM=rsc R=rsc CC=golang-codereviews https://golang.org/cl/169800043
-rw-r--r--misc/cgo/test/issue9026.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/cgo/test/issue9026.go b/misc/cgo/test/issue9026.go
index b17440452f..b5d975f17a 100644
--- a/misc/cgo/test/issue9026.go
+++ b/misc/cgo/test/issue9026.go
@@ -5,7 +5,7 @@ typedef struct {} git_merge_file_input;
typedef struct {} git_merge_file_options;
-int git_merge_file(
+void git_merge_file(
git_merge_file_input *in,
git_merge_file_options *opts) {}
*/