styling: convert TAB to four SPACES

Signed-off-by: Kiveisha Yevgeniy <yevgeniy.kiveisha@intel.com>
This commit is contained in:
Kiveisha Yevgeniy
2014-06-03 09:12:47 +00:00
parent 0db7af89f9
commit 5b8922f7bf
20 changed files with 635 additions and 635 deletions

View File

@@ -32,7 +32,7 @@ int running = 0;
void
sig_handler(int signo)
{
printf("got signal\n");
printf("got signal\n");
if (signo == SIGINT) {
printf("exiting application\n");
running = 1;
@@ -43,19 +43,19 @@ int
main(int argc, char **argv)
{
upm::MY9221 *bar = new upm::MY9221(8, 9);
signal(SIGINT, sig_handler);
signal(SIGINT, sig_handler);
while (!running) {
for (int idx = 1; idx < 11; idx++) {
bar->setBarLevel (idx);
usleep(1000);
}
}
while (!running) {
for (int idx = 1; idx < 11; idx++) {
bar->setBarLevel (idx);
usleep(1000);
}
}
std::cout << "exiting application" << std::endl;
std::cout << "exiting application" << std::endl;
delete bar;
delete bar;
return 0;
}