From f40ab9c6e181cbe666b1866482e7821c5626b52f Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Mon, 2 Apr 2012 10:37:42 +0200 Subject: [PATCH] ownCloud: Debug output only if NDEBUG is undefined. Signed-off-by: Andreas Schneider --- modules/csync_owncloud.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/csync_owncloud.c b/modules/csync_owncloud.c index b225b8fea..f2532d43f 100644 --- a/modules/csync_owncloud.c +++ b/modules/csync_owncloud.c @@ -44,7 +44,11 @@ #include "vio/csync_vio_module.h" #include "vio/csync_vio_file_stat.h" +#ifdef NDEBUG +#define DEBUG_WEBDAV(x) +#else #define DEBUG_WEBDAV(x) printf x +#endif enum resource_type { resr_normal = 0,