From 2c7d186910a4792062405f2fabb15b17ec2cdbdf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Tue, 10 Dec 2013 19:22:17 +0100 Subject: [PATCH] Fix build with debugging switched off. --- src/VfsNs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VfsNs.cpp b/src/VfsNs.cpp index f7d5d1d..da7c898 100644 --- a/src/VfsNs.cpp +++ b/src/VfsNs.cpp @@ -2121,7 +2121,7 @@ void VfsCatalog::rfnDelete(const std::string& path, const std::string& rfn) thro } catch (DmException e) { // not critical, but log a warning #ifndef DEBUG - syslog(LOG_WARN, "%s", e.what()); + syslog(LOG_WARNING, "%s", e.what()); #endif } } -- 1.8.2.3