summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoe Rubinstein <nrubinstein@avencall.com>2012-07-16 17:24:16 +0200
committerNoe Rubinstein <nrubinstein@avencall.com>2012-07-16 17:24:16 +0200
commit0e2bf91c74407b7149c6f3c71e18946233cb0e17 (patch)
tree78d056370ae9307fda5e4609fb46e6c01da59fe2
parent7b5ccf300f61b6c075e6a484e9d1fe34586b06e3 (diff)
cosmetic
-rw-r--r--bin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin.c b/bin.c
index dca7f5e..565b1bb 100644
--- a/bin.c
+++ b/bin.c
@@ -12,8 +12,8 @@ printu32(unsigned int n) {
printu32_long(unsigned int n) {
int i;
printf("%u = 0x%08x\n", n, n);
- printf("|31|30|29|28|27|26|25|24|23|22|21|20|19|18|17|16|15"
- "|14|13|12|11|10| 9| 8| 7| 6| 5| 4| 3| 2| 1| 0\n");
+ printf("|31|30|29|28|27|26|25|24|23|22|21|20|19|18|17|16"
+ "|15|14|13|12|11|10| 9| 8| 7| 6| 5| 4| 3| 2| 1| 0\n");
for(i = 31; i>=0; i--) printf("| %d", !!(n&(1<<i)));
printf("\n");
}