Refactor app to use 'screen with widgets' rather than 'widgets'

This commit is contained in:
Pim van Pelt
2017-11-26 15:01:59 +01:00
parent 3e2e9d4e5b
commit fd68b1ec03
11 changed files with 134 additions and 104 deletions

View File

@ -25,7 +25,7 @@ int log_print_prefix(enum cs_log_level l, const char *func, const char *file) {
default: // LL_NONE
return 0;
}
printf ("%-5s %-15s %-15s| ", ll_str, file, func);
printf ("%-5s %-15s %-40s| ", ll_str, file, func);
return 1;
}