1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-23 21:35:11 +03:00

fix compile error with --disable-logging

This commit is contained in:
Kay Sievers 2008-10-02 06:20:33 +02:00
parent 714131f1f2
commit d6b148cde2

View File

@ -30,14 +30,14 @@ log_null(struct udev *udev, const char *format, ...) {}
# ifdef USE_DEBUG
# define dbg(udev, arg...) udev_log(udev, LOG_DEBUG, __FILE__, __LINE__, __FUNCTION__, ## arg)
# else
# define dbg log_null
# define dbg(udev, arg...) log_null(udev, ## arg)
# endif
# define info(udev, arg...) udev_log(udev, LOG_INFO, __FILE__, __LINE__, __FUNCTION__, ## arg)
# define err(udev, arg...) udev_log(udev, LOG_ERR, __FILE__, __LINE__, __FUNCTION__, ## arg)
#else
# define dbg log_null
# define info log_null
# define err log_null
# define dbg(udev, arg...) log_null(udev, ## arg)
# define info(udev, arg...) log_null(udev, ## arg)
# define err(udev, arg...) log_null(udev, ## arg)
#endif
/* libudev */