]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/log-syslog.c
Build: Added support for custom PKG_CONFIG_PATH in UCW::Configure::PkgConfig().
[libucw.git] / ucw / log-syslog.c
index e3bbd6b5904273acf8341df15f7019ef3a16c634..31e66d622adb2cadacb3c24a3ad7f1fc50742d15 100644 (file)
@@ -8,8 +8,8 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
-#include "ucw/log.h"
+#include <ucw/lib.h>
+#include <ucw/log.h>
 
 #include <string.h>
 #include <syslog.h>
@@ -59,7 +59,7 @@ syslog_facility(const char *name)
     { "local7",                LOG_LOCAL7 },
   };
 
-  for (uns i=0; i < ARRAY_SIZE(facilities); i++)
+  for (uint i=0; i < ARRAY_SIZE(facilities); i++)
     if (!strcmp(facilities[i].name, name))
       return facilities[i].id;
   return -1;