From 7b7f5061427b5456835dd48923a8cc0563cfd1e9 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Sun, 8 Dec 2013 19:51:01 +0100 Subject: [PATCH] make style --- libnfc/conf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libnfc/conf.c b/libnfc/conf.c index bf68def..2319a75 100644 --- a/libnfc/conf.c +++ b/libnfc/conf.c @@ -177,14 +177,14 @@ conf_devices_load(const char *dirname, nfc_context *context) log_put(LOG_GROUP, LOG_CATEGORY, NFC_LOG_PRIORITY_DEBUG, "Unable to open directory: %s", dirname); } else { struct dirent *de; - #ifdef WIN32 - while ((de = readdir(d)) != NULL ) { - #else +#ifdef WIN32 + while ((de = readdir(d)) != NULL) { +#else struct dirent entry; struct dirent *result; while ((readdir_r(d, &entry, &result) == 0) && (result != NULL)) { de = &entry; - #endif +#endif if (de->d_name[0] != '.') { const size_t filename_len = strlen(de->d_name); const size_t extension_len = strlen(".conf");