tRename flags to constants in comment - dedup - deduplicating backup program
(HTM) git clone git://git.z3bra.org/dedup.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 5dfe0aa3dbd6568360c5279fb540d5e4878c30c6
(DIR) parent 3ae183aa99bba33b67a2f59447e1e835104b629b
(HTM) Author: sin <sin@2f30.org>
Date: Wed, 1 May 2019 22:26:22 +0100
Rename flags to constants in comment
Diffstat:
M bstorage.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/bstorage.c b/bstorage.c
t@@ -27,7 +27,7 @@
#include "queue.h"
#include "tree.h"
-/* block header flags */
+/* block header constants */
#define BHDRMAGIC "DEDUPDIDUPDIDUP"
#define NBHDRMAGIC sizeof(BHDRMAGIC)
#define VMIN 0
t@@ -41,7 +41,7 @@
#define CSNAPPYTYPE 1
#define BHDRSIZE (NBHDRMAGIC + 8 + 8)
-/* block descriptor flags */
+/* block descriptor constants */
#define BDTYPE 0x100
#define BDSIZE (8 + 8 + 8 + 8 + (MDSIZE))