From 3ee7bcf263605e74a488f99873fc18ea0c33a1d6 Mon Sep 17 00:00:00 2001 From: Zephyr Pellerin Date: Wed, 13 Feb 2019 12:05:06 -0800 Subject: [PATCH] Reintroduce unused cache_size in mkcache_bytes Although this is unused, we shouldn't change more than is necessary to get this to build on Windows/MSVC. --- src/python/core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/python/core.c b/src/python/core.c index 4b1ab89f..79f6018b 100644 --- a/src/python/core.c +++ b/src/python/core.c @@ -21,6 +21,7 @@ static PyObject * mkcache_bytes(PyObject *self, PyObject *args) { unsigned long block_number; + unsigned long cache_size; if (!PyArg_ParseTuple(args, "k", &block_number)) return 0;