Mercurial > hg-stable
changeset 34628:72b24ac81d5d
bdiff: fix misplaced comma in macro definition with clang-format
Differential Revision: https://phab.mercurial-scm.org/D1005
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 04 Oct 2017 10:48:46 -0400 |
parents | 72985b390d7c |
children | 2c79a5a0c7f3 |
files | mercurial/bdiff.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/bdiff.c Wed Oct 04 10:47:51 2017 -0400 +++ b/mercurial/bdiff.c Wed Oct 04 10:48:46 2017 -0400 @@ -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;