Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Add missing argument to Sprintf()
Browse files Browse the repository at this point in the history
  • Loading branch information
gvalkov committed Apr 10, 2015
1 parent 2c45264 commit a8dc3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion events.go
Expand Up @@ -72,7 +72,7 @@ func (ev *KeyEvent) String() string {
state = "down"
}

return fmt.Sprintf("key event at %d.%d, %d (%d), ()",
return fmt.Sprintf("key event at %d.%d, %d (%d), (%s)",
ev.Event.Time.Sec, ev.Event.Time.Usec,
ev.Scancode, ev.Event.Code, state)
}
Expand Down

0 comments on commit a8dc3dd

Please sign in to comment.