Skip to content

Commit

Permalink
go 1.2 vet
Browse files Browse the repository at this point in the history
  • Loading branch information
awalterschulze committed May 28, 2014
1 parent e2bee71 commit fb9da01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/defaultcheck/defaultcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func (p *plugin) Generate(file *generator.FileDescriptor) {
}
for _, e := range file.GetExtension() {
if !gogoproto.IsNullable(e) {
fmt.Fprintf(os.Stderr, "ERROR: extended field %v cannot be nullable", generator.CamelCase(e.GetName()), generator.CamelCase(*e.Name))
fmt.Fprintf(os.Stderr, "ERROR: extended field %v cannot be nullable %v", generator.CamelCase(e.GetName()), generator.CamelCase(*e.Name))
os.Exit(1)
}
}
Expand Down

0 comments on commit fb9da01

Please sign in to comment.