diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-02-11 23:16:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-02-12 00:03:20 +0100 |
commit | d66b704b51dc9a63eabbaee994f98101d8387ae6 (patch) | |
tree | 26fbf8e2a02bbf3c5794ca82dea2b6a51239a59b /guix/store.scm | |
parent | 9e5ace9d1dfc1e9de1cd936bf4f00d1dcca51f90 (diff) | |
download | gnu-guix-d66b704b51dc9a63eabbaee994f98101d8387ae6.tar gnu-guix-d66b704b51dc9a63eabbaee994f98101d8387ae6.tar.gz |
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.scm | 4 |
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)) |