aboutsummaryrefslogtreecommitdiffstats
path: root/src/gammad.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-07-12 09:19:15 +0200
committerMattias Andrée <maandree@kth.se>2016-07-12 09:19:18 +0200
commitc1a1f32d800bbeb6b99ff1802c4ca0b8933e52b1 (patch)
tree12b466738f7d9cc2831b612f1740413212262b31 /src/gammad.c
parentImplement marshal of the process (diff)
downloadcoopgammad-c1a1f32d800bbeb6b99ff1802c4ca0b8933e52b1.tar.gz
coopgammad-c1a1f32d800bbeb6b99ff1802c4ca0b8933e52b1.tar.bz2
coopgammad-c1a1f32d800bbeb6b99ff1802c4ca0b8933e52b1.tar.xz
whitespace
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/gammad.c')
-rw-r--r--src/gammad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gammad.c b/src/gammad.c
index 7dfebd9..c19bc09 100644
--- a/src/gammad.c
+++ b/src/gammad.c
@@ -954,7 +954,7 @@ static size_t marshal(void* buf)
off += sizeof(size_t);
for (i = 0; i < outputs_n; i++)
- off += output_marshal(outputs + i , bs ? bs + off : NULL);
+ off += output_marshal(outputs + i, bs ? bs + off : NULL);
if (bs != NULL)
*(int*)(bs + off) = socketfd;