summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bin/bit.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bit.y b/bin/bit.y
index 2b2ee27c..72056fc7 100644
--- a/bin/bit.y
+++ b/bin/bit.y
@@ -174,7 +174,7 @@ int main(void) {
 			for (int i = 0; i < 8; ++i) {
 				bin[i] = '0' + (result >> (7 - i) & 1);
 			}
-			printf(" 0b%s", bin);
+			printf(" %#"PRIo64" 0b%s", result, bin);
 		}
 
 		if (result < 128 && isprint(result)) {
s='logsubject'>Persist bright across color changesJune McEnroe 2017-07-30Add index.htmlJune McEnroe 2017-07-30Add snapshot.shJune McEnroe 2017-07-30Fix termcap patch for background colorsJune McEnroe 2017-07-30Update helpJune McEnroe 2017-07-30Fix help to track colorJune McEnroe 2017-07-30Support background colorsJune McEnroe 2017-07-30Track color only client-sideJune McEnroe 2017-07-30Add ostensible support for background colorsJune McEnroe 2017-07-30Add tile create and access timestampsJune McEnroe 2017-07-30Assert stable struct Tile field offsetsJune McEnroe 2017-07-30Add chroot.shJune McEnroe 2017-07-30Add ` commandJune McEnroe 2017-07-30Add sshd_configJune McEnroe 2017-07-30Add termcap patchJune McEnroe