Suppress unused variable warning in compare metadata
This commit is contained in:
parent
674c1cd509
commit
d49c75ebf5
1
main.go
1
main.go
|
|
@ -6838,6 +6838,7 @@ func buildCompareView(state *appState) fyne.CanvasObject {
|
||||||
// Helper function to format metadata
|
// Helper function to format metadata
|
||||||
formatMetadata := func(src *videoSource) string {
|
formatMetadata := func(src *videoSource) string {
|
||||||
fileSize := "Unknown"
|
fileSize := "Unknown"
|
||||||
|
// origBytes reserved for future reduction calc
|
||||||
origBytes := int64(0)
|
origBytes := int64(0)
|
||||||
if fi, err := os.Stat(src.Path); err == nil {
|
if fi, err := os.Stat(src.Path); err == nil {
|
||||||
origBytes = fi.Size()
|
origBytes = fi.Size()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user