From 9976b7e98089133e807498e7abc102fdccdaf000 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 18 Dec 2012 15:47:24 +0530 Subject: [PATCH] ... --- src/calibre/devices/mtp/windows/content_enumeration.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/devices/mtp/windows/content_enumeration.cpp b/src/calibre/devices/mtp/windows/content_enumeration.cpp index d83c4b0905..e642d38131 100644 --- a/src/calibre/devices/mtp/windows/content_enumeration.cpp +++ b/src/calibre/devices/mtp/windows/content_enumeration.cpp @@ -430,7 +430,7 @@ end: return values; } // }}} -static bool get_files_and_folders(unsigned int level, IPortableDevice *device, IPortableDeviceContent *content, IPortableDevicePropertiesBulk *bulk_properties, const wchar_t *parent_id, PyObject *callback, PyObject *ans) { +static bool get_files_and_folders(unsigned int level, IPortableDevice *device, IPortableDeviceContent *content, IPortableDevicePropertiesBulk *bulk_properties, const wchar_t *parent_id, PyObject *callback, PyObject *ans) { // {{{ bool ok = true; IPortableDevicePropVariantCollection *object_ids = NULL; PyObject *subfolders = NULL; @@ -462,7 +462,7 @@ end: if (object_ids != NULL) object_ids->Release(); Py_XDECREF(subfolders); return ok; -} +} // }}} PyObject* wpd::get_filesystem(IPortableDevice *device, const wchar_t *storage_id, IPortableDevicePropertiesBulk *bulk_properties, PyObject *callback) { // {{{ PyObject *ans = NULL;