diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-17 22:18:25 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-17 22:18:25 +0100 |
commit | 6a3db4c72485aba6187466005473e287f539e3ce (patch) | |
tree | 463ce5e3f04f8197cd40565e8ce35c0f98e6d694 /verifysetup/core/storage.go | |
parent | 61cc5e9a02a38cd086d382e521509e85fecd6d07 (diff) | |
download | fsverify-6a3db4c72485aba6187466005473e287f539e3ce.tar.gz fsverify-6a3db4c72485aba6187466005473e287f539e3ce.tar.bz2 |
Clean up code
Diffstat (limited to 'verifysetup/core/storage.go')
-rw-r--r-- | verifysetup/core/storage.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/verifysetup/core/storage.go b/verifysetup/core/storage.go index e7ded32..64b06a1 100644 --- a/verifysetup/core/storage.go +++ b/verifysetup/core/storage.go @@ -77,7 +77,6 @@ func CreateHeader(unsignedHash string, signedHash string, diskSize int, tableSiz binary.BigEndian.PutUint32(disk, uint32(diskSize)) copy(header[190:], disk) - fmt.Println(tableSize) db := make([]byte, 4) binary.BigEndian.PutUint32(db, uint32(tableSize)) copy(header[195:], db) |