store: Add comments for the stracer.

* guix/store.scm (%worker-magic-1, %worker-magic-2): Add comments.
This commit is contained in:
Ludovic Courtès 2014-02-11 23:16:28 +01:00
parent 9e5ace9d1d
commit d66b704b51
1 changed files with 2 additions and 2 deletions

View File

@ -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))