aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pluto/defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluto/defs.h b/src/pluto/defs.h
index dc90fcb26..16298f01d 100644
--- a/src/pluto/defs.h
+++ b/src/pluto/defs.h
@@ -82,7 +82,7 @@ typedef struct chunk chunk_t;
#define chunkcpy(dst, chunk) \
{ memcpy(dst, chunk.ptr, chunk.len); dst += chunk.len;}
#define same_chunk(a, b) \
- ((a ).len == (b).len && memcmp((a).ptr, (b).ptr, (b).len) == 0 )
+ ( (a).len == (b).len && memcmp((a).ptr, (b).ptr, (b).len) == 0 )
extern char* temporary_cyclic_buffer(void);
extern const char* concatenate_paths(const char *a, const char *b);