summaryrefslogtreecommitdiff
path: root/guix/store.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-02-11 23:16:28 +0100
committerLudovic Courtès <ludo@gnu.org>2014-02-12 00:03:20 +0100
commitd66b704b51dc9a63eabbaee994f98101d8387ae6 (patch)
tree26fbf8e2a02bbf3c5794ca82dea2b6a51239a59b /guix/store.scm
parent9e5ace9d1dfc1e9de1cd936bf4f00d1dcca51f90 (diff)
store: Add comments for the stracer.
* guix/store.scm (%worker-magic-1, %worker-magic-2): Add comments.
Diffstat (limited to 'guix/store.scm')
-rw-r--r--guix/store.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/store.scm b/guix/store.scm
index b9b9d9e55a..8e88c5f86d 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -100,8 +100,8 @@
(define %protocol-version #x10c)
-(define %worker-magic-1 #x6e697863)
-(define %worker-magic-2 #x6478696f)
+(define %worker-magic-1 #x6e697863) ; "nixc"
+(define %worker-magic-2 #x6478696f) ; "dxio"
(define (protocol-major magic)
(logand magic #xff00))