mirror of
https://github.com/reactos/ccache.git
synced 2025-02-25 13:30:28 +00:00
Print entry counts in dump-manifest
This commit is contained in:
parent
f5bb7e4e5a
commit
396d948ff2
@ -28,21 +28,21 @@ def get_uint32():
|
||||
print "Magic: %s" % get_fixstr(4)
|
||||
print "Version: %s" % get_uint16()
|
||||
|
||||
print "File paths:"
|
||||
n = get_uint16()
|
||||
print "File paths (%d):" % n
|
||||
for i in range(n):
|
||||
print " %d: %s" % (i, get_str())
|
||||
|
||||
print "File infos:"
|
||||
n = get_uint16()
|
||||
print "File infos (%d):" % n
|
||||
for i in range(n):
|
||||
print " %d:" % i
|
||||
print " Path index: %d" % get_uint16()
|
||||
print " Hash: %s" % get_md4()
|
||||
print " Size: %d" % get_uint32()
|
||||
|
||||
print "Objects:"
|
||||
n = get_uint16()
|
||||
print "Objects (%d):" % n
|
||||
for i in range(n):
|
||||
print " %d:" % i
|
||||
print " File hash indexes:",
|
||||
|
Loading…
x
Reference in New Issue
Block a user