diff options
Diffstat (limited to 'vendor/github.com/kevinburke/ssh_config/position.go')
-rw-r--r-- | vendor/github.com/kevinburke/ssh_config/position.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/kevinburke/ssh_config/position.go b/vendor/github.com/kevinburke/ssh_config/position.go index 7304bc3b7f..e0b5e3fb33 100644 --- a/vendor/github.com/kevinburke/ssh_config/position.go +++ b/vendor/github.com/kevinburke/ssh_config/position.go @@ -8,8 +8,8 @@ import "fmt" // column number, respectively. Values of zero or less will cause Invalid(), // to return true. type Position struct { - Line uint32 // line within the document - Col uint16 // column within the line + Line int // line within the document + Col int // column within the line } // String representation of the position. |