Skip to content

Commit

Permalink
Fix cgo build
Browse files Browse the repository at this point in the history
  • Loading branch information
kortschak committed Mar 20, 2015
1 parent 1d1f22b commit 7e26297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dumpcgo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func addCgoDumpTests() {
addDumpTest(v, "&"+vt+"("+vs+")\n")
addDumpTest(pv, "&&"+vt+"("+vs+")\n")
addDumpTest(&pv, "&&&"+vt+"("+vs+")\n")
addDumpTest(nv, "*"+vt+"(nil)\n")
addDumpTest(nv, "(*"+vt+")(nil)\n")

// C char array.
v2 := testdata.GetCgoCharArray()
Expand Down

0 comments on commit 7e26297

Please sign in to comment.