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) { 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);
} }