Some whitespace fixes
This commit is contained in:
parent
ff5c270ee1
commit
69e7b11275
1 changed files with 6 additions and 6 deletions
12
mmss/mmss.c
12
mmss/mmss.c
|
@ -53,12 +53,12 @@ static void init_nodes(gmrf_t *nodes) {
|
||||||
|
|
||||||
|
|
||||||
static inline int timeout_min(int a, int b) {
|
static inline int timeout_min(int a, int b) {
|
||||||
if (a < 0)
|
if (a < 0)
|
||||||
return b;
|
return b;
|
||||||
else if (b < 0)
|
else if (b < 0)
|
||||||
return a;
|
return a;
|
||||||
else
|
else
|
||||||
return min(a, b);
|
return min(a, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue