diff options
author | tmk <nobody@nowhere> | 2012-11-23 13:22:53 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-11-23 13:22:53 +0900 |
commit | 83f0e800e53a6d91a814d19f94bc5401a6322971 (patch) | |
tree | 5fa8d975415232a0d23e249c047f014cb21b5c4b /common/print.c | |
parent | 38effe4ae4a691dcf034c31f67d1bdb2156ba7f5 (diff) | |
parent | 3f47bcbcae2249dff01f84b9b583ead0d9f2308d (diff) |
Merge branch 'phantom'
Diffstat (limited to 'common/print.c')
-rw-r--r-- | common/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/print.c b/common/print.c index d8a899b407..84400a1df2 100644 --- a/common/print.c +++ b/common/print.c @@ -138,7 +138,7 @@ void print_hex32(uint32_t data) } -void print_bin(uint8_t data) +void print_bin8(uint8_t data) { for (int i = 7; i >= 0; i--) { sendchar((data & (1<<i)) ? '1' : '0'); |