Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maximk committed Jan 26, 2015
1 parent 0857ac4 commit 618f7aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/cloudozer.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ void cloudozer2(void)
promo_code[1] = b + '0';
promo_code[2] = c + '0';
promo_code[3] = d + '0';
promo_code[4] = 10 - a + '0';
promo_code[5] = 10 - b + '0';
promo_code[6] = 10 - c + '0';
promo_code[7] = 10 - d + '0';
promo_code[4] = 9 - a + '0';
promo_code[5] = 9 - b + '0';
promo_code[6] = 9 - c + '0';
promo_code[7] = 9 - d + '0';
promo_code[8] = 0;

printk("========================================\n"
Expand Down

0 comments on commit 618f7aa

Please sign in to comment.