]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: tabs suck (#8527)
authorLennart Poettering <lennart@poettering.net>
Fri, 23 Mar 2018 14:21:35 +0000 (15:21 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 23 Mar 2018 14:21:35 +0000 (15:21 +0100)
src/basic/virt.c
src/shared/libshared.sym
src/udev/meson.build
src/udev/udev-builtin-hwdb.c

index 39b4a98d896920384bf7455ce42f836d5cc12894..8a7d71d4b41e12ff76eff11bc1db83db803d1dc5 100644 (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)
index e4ae17eede6961c7c696660d3bd5554d10aa446b..6a7495adc33a94ad81442fc82d69a32a3aa4e9b1 100644 (file)
@@ -1,3 +1,3 @@
 SD_SHARED {
-       global: *;
+        global: *;
 };
index de2fd2d9c4ece2fbdc4258861318dc1943cdc788..7b5e326d76d6a60e1213942b89f0beda95d198a9 100644 (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
 
index dbfe024298c41068e1891dc936f53c5563d9f7cf..b95465b3e3906a88f11d9c6910715eb87b86944e 100644 (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;
 }