some spacing for clarity in SharedUtil

This commit is contained in:
Stephen Birarda 2013-03-18 13:14:22 -07:00
parent 32b52f474f
commit e012f826e5

View file

@ -26,8 +26,10 @@ float randFloat () {
void outputBits(char byte) {
printf("%d: ", byte);
for (int i = 0; i < 8; i++) {
printf("%d", byte >> (7 - i) & 1);
}
printf("\n");
}