summaryrefslogtreecommitdiff
path: root/cryptfs/nonce.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-05 20:36:26 +0200
committerJakob Unterwurzacher2015-09-05 20:36:26 +0200
commitd0524ded993f870c2dd8a559efed0d612e85d588 (patch)
treed6bd42b690eb5642378b7cf3404b6889541fe183 /cryptfs/nonce.go
parent11fb037e7e7d84405b3bed9de2aa500e49d9502d (diff)
Use Debug object instead of fmt
Diffstat (limited to 'cryptfs/nonce.go')
-rw-r--r--cryptfs/nonce.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptfs/nonce.go b/cryptfs/nonce.go
index 3803b8c..f93f59c 100644
--- a/cryptfs/nonce.go
+++ b/cryptfs/nonce.go
@@ -49,7 +49,7 @@ func (n *nonce96) Get() []byte {
binary.BigEndian.PutUint64(r[4:12], n.low64)
n.lock.Unlock()
- debug.Printf("nonce96.Get(): %s\n", hex.EncodeToString(r))
+ Debug.Printf("nonce96.Get(): %s\n", hex.EncodeToString(r))
return r
}