Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1b08e44

Browse files
committedNov 17, 2016
Fix double indirection for %% literal
Signed-off-by: Martino Facchin <[email protected]>
1 parent 68dcd24 commit 1b08e44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/arduino.cc/builder/i18n/i18n.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func (s HumanLogger) Fprintln(w io.Writer, level string, format string, a ...int
6565
}
6666

6767
func (s HumanLogger) Println(level string, format string, a ...interface{}) {
68-
s.Fprintln(os.Stdout, level, Format(format, a...))
68+
s.Fprintln(os.Stdout, level, format, a...)
6969
}
7070

7171
func (s HumanLogger) Name() string {

0 commit comments

Comments
 (0)
Please sign in to comment.