This commit is contained in:
Dan Ballard 2020-04-03 10:28:17 -07:00
parent 6c633925df
commit b6853477a4
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@
(defun byte-to-2hex (byte)
"Turn a byte into a string of 2 hex characters"
(format nil "~2,0X" byte))
(format nil "~2,'0X" byte))
(defun byte-to-2hex-rev (byte)
(reverse (byte-to-2hex byte)))