diff mercurial/cext/revlog.c @ 34441:7ed0750c71a1

cext: wrap before brace for functions This is our prevailing style. Differential Revision: https://phab.mercurial-scm.org/D910
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 02 Oct 2017 19:28:41 +0100
parents b90e8da190da
children 6ece4a85c350
line wrap: on
line diff
--- a/mercurial/cext/revlog.c	Mon Oct 02 19:09:52 2017 +0100
+++ b/mercurial/cext/revlog.c	Mon Oct 02 19:28:41 2017 +0100
@@ -407,7 +407,8 @@
 	return newlist;
 }
 
-static int check_filter(PyObject *filter, Py_ssize_t arg) {
+static int check_filter(PyObject *filter, Py_ssize_t arg)
+{
 	if (filter) {
 		PyObject *arglist, *result;
 		int isfiltered;