summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-04-20 21:44:33 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-04-20 21:44:33 +0200
commitc8431881e0cb8fb022ee496ee555c7658a2a5e0d (patch)
tree3625c32691826f9383ceb26c5fac1b9e8e7275b3 /src
parentdda980968319490074e5315d48f2ba51fc8b9e29 (diff)
downloadfastd-c8431881e0cb8fb022ee496ee555c7658a2a5e0d.tar
fastd-c8431881e0cb8fb022ee496ee555c7658a2a5e0d.zip
Just some whitespace fixes
Diffstat (limited to 'src')
-rw-r--r--src/fastd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fastd.h b/src/fastd.h
index 943b953..06723a8 100644
--- a/src/fastd.h
+++ b/src/fastd.h
@@ -370,8 +370,8 @@ static inline int fastd_rand(fastd_context_t *ctx, int min, int max) {
#define container_of(ptr, type, member) ({ \
- const typeof( ((type *)0)->member ) *__mptr = (ptr); \
- (type *)( (char *)__mptr - offsetof(type,member) );})
+ const typeof( ((type *)0)->member ) *__mptr = (ptr); \
+ (type *)( (char *)__mptr - offsetof(type,member) );})
static inline size_t alignto(size_t l, size_t a) {