From 584e6f9751e9ab20caac3ce5af3114928690e0b4 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 2 Oct 2013 13:08:39 -0700 Subject: [PATCH] Ran uncrustify --- maxminddb.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maxminddb.c b/maxminddb.c index 3615e4e..89c04ed 100644 --- a/maxminddb.c +++ b/maxminddb.c @@ -85,10 +85,10 @@ static PyObject *Reader_constructor(PyObject *UNUSED(self), PyObject * args) if (MMDB_SUCCESS != status) { free(mmdb); return PyErr_Format( - MaxMindDB_error, - "Error opening database file (%s). Is this a valid MaxMind DB file?", - filename - ); + MaxMindDB_error, + "Error opening database file (%s). Is this a valid MaxMind DB file?", + filename + ); } obj->mmdb = mmdb;