chiark / gitweb /
[PATCH] update the spec file for the new version and install process.
[elogind.git] / udev-add.c
index c8aa2f70c9fe0a540de2b91f4645d39d166111b2..48979393a5c2776a4340c5cb7703c95013996574 100644 (file)
@@ -93,6 +93,7 @@ static int create_node(char *name, char type, int major, int minor, int mode)
                return -EINVAL;
        }
 
+       dbg("mknod(%s, %#o, %u, %u)", filename, mode, major, minor);
        retval = mknod(filename,mode,makedev(major,minor));
        if (retval)
                dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",