tree-wide: tabs suck (#8527)

This commit is contained in:
Lennart Poettering 2018-03-23 15:21:35 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent 3e44d24d3b
commit 2f5fa62bf7
4 changed files with 5 additions and 5 deletions

View File

@ -367,7 +367,7 @@ int detect_vm(void) {
* because we're not an x86 guest), then we should try the /proc/xen
* directory next. If that's not found, then we check for the high-level
* hypervisor sysfs file.
*/
*/
r = detect_vm_xen();
if (r < 0)

View File

@ -1,3 +1,3 @@
SD_SHARED {
global: *;
global: *;
};

View File

@ -63,7 +63,7 @@ endif
if conf.get('HAVE_ACL') == 1
libudev_core_sources += ['udev-builtin-uaccess.c',
logind_acl_c,
logind_acl_c,
sd_login_c]
endif

View File

@ -73,9 +73,9 @@ static const char *modalias_usb(struct udev_device *dev, char *s, size_t size) {
if (!p)
return NULL;
if (safe_atoux16(v, &vn) < 0)
return NULL;
return NULL;
if (safe_atoux16(p, &pn) < 0)
return NULL;
return NULL;
snprintf(s, size, "usb:v%04Xp%04X*", vn, pn);
return s;
}