Skip to content

Commit

Permalink
Fix printf format specifier for i64
Browse files Browse the repository at this point in the history
  • Loading branch information
pwaller committed Mar 9, 2019
1 parent d39f39d commit 917d5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hello-world/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package main
func main() {
a := 30
b := 12
println("Hello world %d\n\x00", a+b)
println("Hello world %lld\n\x00", a+b)
}

0 comments on commit 917d5b9

Please sign in to comment.