From 86847b7c3c8b68359437c5e55a8d89de76918f2e Mon Sep 17 00:00:00 2001 From: Blallo Date: Thu, 16 May 2019 21:00:40 +0200 Subject: [PATCH] Add size to StatusReport. --- sizer/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sizer/main.go b/sizer/main.go index 175e0ab..e240602 100644 --- a/sizer/main.go +++ b/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 }