Browse Source

Add size to StatusReport.

Blallo 5 years ago
parent
commit
86847b7c3c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      sizer/main.go

+ 2 - 1
sizer/main.go

@@ -45,8 +45,9 @@ type INodeList struct {
 	safe     sync.Mutex
 }
 
-type statusReport struct {
+type StatusReport struct {
 	path string
+	size int64
 	err  error
 }