# HG changeset patch # User Augie Fackler # Date 2017-10-04 14:48:46 # Node ID 72b24ac81d5d0340ec19a2cc1d98c76c67b1d548 # Parent 72985b390d7c85909f601ff5dee93d05509c38fb bdiff: fix misplaced comma in macro definition with clang-format Differential Revision: https://phab.mercurial-scm.org/D1005 diff --git a/mercurial/bdiff.c b/mercurial/bdiff.c --- a/mercurial/bdiff.c +++ b/mercurial/bdiff.c @@ -19,7 +19,7 @@ /* Hash implementation from diffutils */ #define ROL(v, n) ((v) << (n) | (v) >> (sizeof(v) * CHAR_BIT - (n))) -#define HASH(h, c) ((c) + ROL(h ,7)) +#define HASH(h, c) ((c) + ROL(h, 7)) struct pos { int pos, len;