diff options
-rw-r--r-- | src/pkg/go/printer/printer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/go/printer/printer.go b/src/pkg/go/printer/printer.go index e09387cf7..4196eb8d8 100644 --- a/src/pkg/go/printer/printer.go +++ b/src/pkg/go/printer/printer.go @@ -55,7 +55,7 @@ func (p *printer) nextComment() { if p.comments != nil && p.cindex < len(p.comments) && p.comments[p.cindex] != nil { p.cpos = p.comments[p.cindex].List[0].Pos(); } else { - p.cpos = token.Position{1<<30, 1<<30, 1}; // infinite + p.cpos = token.Position{"", 1<<30, 1<<30, 1}; // infinite } } |