aboutsummaryrefslogtreecommitdiff
path: root/hotline/files.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2023-03-26 21:10:03 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2023-03-26 21:10:03 -0700
commitd005ef04cfaa26943e6dd33807d741577ffb232a (patch)
tree26b5e4a945889dde0597f615cee31957efb32fa5 /hotline/files.go
parentc3c2f61b2fd90ab5c7fe6ec769644e9d66d40361 (diff)
Initial refactor to split client from protocol package
Diffstat (limited to 'hotline/files.go')
-rw-r--r--hotline/files.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/files.go b/hotline/files.go
index aa248f8..c4ba718 100644
--- a/hotline/files.go
+++ b/hotline/files.go
@@ -131,7 +131,7 @@ func getFileNameList(path string, ignoreList []string) (fields []Field, err erro
if err != nil {
return nil, err
}
- fields = append(fields, NewField(fieldFileNameWithInfo, b))
+ fields = append(fields, NewField(FieldFileNameWithInfo, b))
}
return fields, nil