Fix braces in if-else statements
From the Linux kernel coding guidelines:
Do not unnecessarily use braces where a single statement will do.
[...] This does not apply if one branch of a conditional statement
is a single statement. Use braces in both branches.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
@@ -117,16 +117,16 @@ void apoint_sec2str(struct apoint *o, long day, char *start, char *end)
|
||||
struct tm lt;
|
||||
time_t t;
|
||||
|
||||
if (o->start < day)
|
||||
if (o->start < day) {
|
||||
strncpy(start, "..:..", 6);
|
||||
else {
|
||||
} else {
|
||||
t = o->start;
|
||||
localtime_r(&t, <);
|
||||
snprintf(start, HRMIN_SIZE, "%02u:%02u", lt.tm_hour, lt.tm_min);
|
||||
}
|
||||
if (o->start + o->dur > day + DAYINSEC)
|
||||
if (o->start + o->dur > day + DAYINSEC) {
|
||||
strncpy(end, "..:..", 6);
|
||||
else {
|
||||
} else {
|
||||
t = o->start + o->dur;
|
||||
localtime_r(&t, <);
|
||||
snprintf(end, HRMIN_SIZE, "%02u:%02u", lt.tm_hour, lt.tm_min);
|
||||
|
||||
Reference in New Issue
Block a user