X-Git-Url: https://git.enpas.org/?p=sysstatus.git;a=blobdiff_plain;f=statuses%2Ftemp.c;h=f2cece80197589a228df2af6d4d845c2f1120f13;hp=5737e29c8a1e8a110a18f89cdcefc54d49a8c425;hb=2ddbfa53a31360e50565345a1ac08c0799c8243e;hpb=9102c7c65421f2ef3e415c7e76a741657e34663b diff --git a/statuses/temp.c b/statuses/temp.c index 5737e29..f2cece8 100644 --- a/statuses/temp.c +++ b/statuses/temp.c @@ -5,27 +5,30 @@ void status_temp(char *title, char *sysfile) { - char stline[16]; - int stfile; - ssize_t stlen; + char stline[16]; + int stfile; + ssize_t stlen; - stlen = fileRead(stline, sizeof(stline), sysfile); - if (stlen <= 0) - return; + stlen = fileRead(stline, sizeof(stline), sysfile); + if (stlen <= 0) { + return; + } - // Read a valid value? Sometimes we get garbage from sysfs... - if (stlen < 6 || stlen > 7) - { - printf(" ^fg(red)%sERROR ", title); - return; - } + /* + * Read a valid value? + * Sometimes we get garbage from sysfs... + */ + if (stlen < 6 || stlen > 7) { + printf(" ^fg(red)%sERROR ", title); + return; + } - fputs(" ^fg(#FF33FF)", stdout); - fputs(title, stdout); - fwrite(stline, 1, stlen - 4, stdout); - /* - fputs(".", stdout); - fwrite(&stline[stlen - 3], 1, 1, stdout); - */ - fputs("°C ", stdout); + fputs(" ^fg(#FF33FF)", stdout); + fputs(title, stdout); + fwrite(stline, 1, stlen - 4, stdout); + /* + fputs(".", stdout); + fwrite(&stline[stlen - 3], 1, 1, stdout); + */ + fputs("°C ", stdout); }