diff options
author | Mattias Andrée <maandree@kth.se> | 2016-08-06 04:33:25 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-08-06 04:33:25 +0200 |
commit | 49d437a54d585eea8f261ab0dcf54053fb06f950 (patch) | |
tree | 6549d19b6057ac990cb403fc59df78ccfae5eecf | |
parent | Use MSG_NOSIGNAL when sending (diff) | |
download | libcoopgamma-49d437a54d585eea8f261ab0dcf54053fb06f950.tar.gz libcoopgamma-49d437a54d585eea8f261ab0dcf54053fb06f950.tar.bz2 libcoopgamma-49d437a54d585eea8f261ab0dcf54053fb06f950.tar.xz |
whitespace
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | src/libcoopgamma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcoopgamma.c b/src/libcoopgamma.c index 2a9879b..7bfd36a 100644 --- a/src/libcoopgamma.c +++ b/src/libcoopgamma.c @@ -1561,14 +1561,14 @@ int libcoopgamma_synchronise(libcoopgamma_context_t* restrict ctx, errno = ECONNRESET; return -1; } - + #ifdef DEBUG_MODE fprintf(stderr, "\033[32m"); fwrite(ctx->inbound + ctx->inbound_head, (size_t)got, 1, stderr); fprintf(stderr, "\033[m"); fflush(stderr); #endif - + ctx->inbound_head += (size_t)got; skip_recv: |