diff options
author | Jakob Unterwurzacher | 2015-09-05 20:36:26 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-05 20:36:26 +0200 |
commit | d0524ded993f870c2dd8a559efed0d612e85d588 (patch) | |
tree | d6bd42b690eb5642378b7cf3404b6889541fe183 /cryptfs/nonce.go | |
parent | 11fb037e7e7d84405b3bed9de2aa500e49d9502d (diff) |
Use Debug object instead of fmt
Diffstat (limited to 'cryptfs/nonce.go')
-rw-r--r-- | cryptfs/nonce.go | 2 |
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 } |