Skip to content

Commit 9504399

Browse files
authored
Fix print statement format in symtab package (#36198)
1 parent 3e5d68c commit 9504399

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdks/go/cmd/symtab/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var t reflect.Type
3838
// Increment is the function that will be executed by its address.
3939
// It increments a global var so we can check that it was indeed called.
4040
func Increment(str string) {
41-
log.Printf(str)
41+
log.Print(str)
4242
counter++
4343
}
4444

0 commit comments

Comments
 (0)