Some whitespace fixes

This commit is contained in:
Matthias Schiffer 2013-03-23 20:27:41 +01:00
parent ff5c270ee1
commit 69e7b11275

View file

@ -53,12 +53,12 @@ static void init_nodes(gmrf_t *nodes) {
static inline int timeout_min(int a, int b) {
if (a < 0)
return b;
else if (b < 0)
return a;
else
return min(a, b);
if (a < 0)
return b;
else if (b < 0)
return a;
else
return min(a, b);
}