chiark / gitweb /
libudev: fix --enable-debug
authorKay Sievers <kay.sievers@vrfy.org>
Sun, 5 Oct 2008 14:18:21 +0000 (16:18 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Sun, 5 Oct 2008 14:18:21 +0000 (16:18 +0200)
TODO
udev/lib/libudev-private.h

diff --git a/TODO b/TODO
index f960f2431b33480b7ce3753e4809a587bd114558..d5633e1c6b220efbd10547a167276b5f1b4fc03d 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,8 +1,8 @@
+  o add DVB variables to kernel, and drop shell script rule
   o handle spaces in SYMLINK+=, do not create multiple links
   o use libudev device in udev_rules.c
       get rid of udevice, store rule matching state in rule iterator
   o rework rules to a match-action list, instead of a rules array
-  o add DVB variables to kernel, and drop shell script rule
   o add watershed extra
   o DEVTYPE for disks is set by the kernel, they will be removed from
     the default rules
index a9ad2f86a9598af9d1e72d2e66eeb656364796e9..b74e26c97e2de7290d9304f204826420a74c7586 100644 (file)
@@ -27,7 +27,7 @@ static inline void __attribute__ ((format(printf, 2, 3)))
 log_null(struct udev *udev, const char *format, ...) {}
 
 #ifdef USE_LOG
-#  ifdef USE_DEBUG
+#  ifdef DEBUG
 #    define dbg(udev, arg...) udev_log(udev, LOG_DEBUG, __FILE__, __LINE__, __FUNCTION__, ## arg)
 #  else
 #    define dbg(udev, arg...) log_null(udev, ## arg)