1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-22 06:50:18 +03:00

libudev: print log_fn address instead of ctx when setting logging function

Patch from Jiri Pirko <jpirko@redhat.com> for libabc.
This commit is contained in:
Kay Sievers 2011-11-08 21:59:27 +01:00
parent 6f410b81aa
commit 842ee61c43

View File

@ -333,7 +333,7 @@ UDEV_EXPORT void udev_set_log_fn(struct udev *udev,
const char *format, va_list args))
{
udev->log_fn = log_fn;
info(udev, "custom logging function %p registered\n", udev);
info(udev, "custom logging function %p registered\n", log_fn);
}
/**