ben-pcf8833

Changeset

4:183a5a2decc7
2013-11-25 Paul Boddie raw files shortlog changelog graph Fixed uninitialised variable.
bitmap.c (file)
     1.1 --- a/bitmap.c	Sun Nov 24 21:31:11 2013 +0000
     1.2 +++ b/bitmap.c	Mon Nov 25 13:07:49 2013 +0000
     1.3 @@ -42,7 +42,7 @@
     1.4  int main(int argc, char *argv[])
     1.5  {
     1.6      uint8_t state = 1;
     1.7 -    uint8_t times;
     1.8 +    uint8_t times = 10;
     1.9      uint8_t current_image = 0;
    1.10  
    1.11      signal(SIGINT, shutdown);