summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-03-23 20:27:41 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-03-23 20:27:41 +0100
commit69e7b112758d05e8a1b827cdb1d370ea86842200 (patch)
tree30c51e91a8ba9d98293350a4a279ccc75a607d92
parentff5c270ee13fee617ccd5865aeb579762a3a9346 (diff)
downloadgmrf-69e7b112758d05e8a1b827cdb1d370ea86842200.tar
gmrf-69e7b112758d05e8a1b827cdb1d370ea86842200.zip
Some whitespace fixes
-rw-r--r--mmss/mmss.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mmss/mmss.c b/mmss/mmss.c
index a046364..fbd422a 100644
--- a/mmss/mmss.c
+++ b/mmss/mmss.c
@@ -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);
}