Commit caa33681 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 8c2aea28
......@@ -575,7 +575,10 @@ func diffF(ctx context.Context, a, b *ZBigFile) (δ *_ΔZBigFile, err error) {
δ.blktabNew = b.blktab.POid()
}
// XXX return δ=nil if no change?
// return δ=nil if no change
if δ.blksizeOld == δ.blksizeNew && δ.blktabOld == δ.blktabNew {
δ = nil
}
return δ, nil
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment