Skip to content

Commit 08d11a0

Browse files
[kvsp] Fix dereference of nClocks
1 parent e2e4b20 commit 08d11a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kvsp/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,8 @@ func doRun() error {
626626
return errors.New("Specify -c, -i, and -o options properly")
627627
}
628628

629-
return runIyokanl2("-o", *outputFileName, "-i", *inputFileName, "-c", fmt.Sprint(nClocks))
629+
return runIyokanl2(
630+
"-o", *outputFileName, "-i", *inputFileName, "-c", fmt.Sprint(*nClocks))
630631
}
631632

632633
func printUsageAndExit() {

0 commit comments

Comments
 (0)