]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix a couple of TABs
authorLennart Poettering <lennart@poettering.net>
Tue, 22 May 2018 14:01:21 +0000 (16:01 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 22 May 2018 14:13:45 +0000 (16:13 +0200)
man/systemd-ask-password.xml
man/systemd-cgtop.xml
man/udevadm.xml
src/basic/MurmurHash2.c
src/basic/MurmurHash2.h
src/nspawn/nspawn.c

index 1d9203fcff0d44672a2540ac03753b5f5e4a284f..abd936772376fe43122fbdf484312f4d781433b9 100644 (file)
       <varlistentry>
         <term><option>--no-output</option></term>
 
-       <listitem><para>Do not print passwords to standard output.
-       This is useful if you want to store a password in kernel
-       keyring with <option>--keyname</option> but do not want it
-       to show up on screen or in logs.</para></listitem>
+        <listitem><para>Do not print passwords to standard output.
+        This is useful if you want to store a password in kernel
+        keyring with <option>--keyname</option> but do not want it
+        to show up on screen or in logs.</para></listitem>
       </varlistentry>
 
       <xi:include href="standard-options.xml" xpointer="help" />
index 5d7b6ca12a9025c91d51c3f4ef4989ef07b101d5..3ead519d07f80b130cdaa020a3546f18e8c63b01 100644 (file)
         <term><option>-r</option></term>
         <term><option>--raw</option></term>
 
-       <listitem><para>Format byte counts (as in memory usage and I/O metrics)
-       with raw numeric values rather than human-readable
+        <listitem><para>Format byte counts (as in memory usage and I/O metrics)
+        with raw numeric values rather than human-readable
         numbers.</para></listitem>
       </varlistentry>
 
index 60f43b2b4afc892b853f867bc9c26bfa2ee36763..3a862f540b784429dde4e0a0efd3fdf4de8bfd1c 100644 (file)
           <term><option>-y</option></term>
           <term><option>--sysname-match=<replaceable>PATH</replaceable></option></term>
           <listitem>
-           <para>Trigger events for devices for which the last component
-           (i.e. the filename) of the <filename>/sys</filename> path matches
-           the specified <replaceable>PATH</replaceable>. This option can be
-           specified multiple times and also supports shell style pattern
-           matching.</para>
+            <para>Trigger events for devices for which the last component
+            (i.e. the filename) of the <filename>/sys</filename> path matches
+            the specified <replaceable>PATH</replaceable>. This option can be
+            specified multiple times and also supports shell style pattern
+            matching.</para>
           </listitem>
         </varlistentry>
         <varlistentry>
index 47adfb4d0a3c79256990f38219020ca44f782299..5859af0a81b622e60ccbc580f18c2a1529902751 100644 (file)
@@ -30,7 +30,7 @@ _Pragma("GCC diagnostic ignored \"-Wimplicit-fallthrough\"")
 
 // Other compilers
 
-#else  // defined(_MSC_VER)
+#else        // defined(_MSC_VER)
 
 #define BIG_CONSTANT(x) (x##LLU)
 
index 93362dd4857a8299df670573522e3ef92eb7b5e0..6104b4fbe68c62308c1310f46079ca8c48ab86a0 100644 (file)
@@ -18,7 +18,7 @@ typedef unsigned __int64 uint64_t;
 
 // Other compilers
 
-#else  // defined(_MSC_VER)
+#else        // defined(_MSC_VER)
 
 #include <stdint.h>
 
index 9cfbb1171e6c7a7573639049c58f63182e0f6cf7..a8b4c8224caf81c33db466250540fe34c0e378f9 100644 (file)
@@ -4194,12 +4194,12 @@ int main(int argc, char *argv[]) {
                 }
 
                 if (arg_start_mode == START_BOOT) {
-                       const char *p;
+                        const char *p;
 
-                       if (arg_pivot_root_new)
-                               p = prefix_roota(arg_directory, arg_pivot_root_new);
-                       else
-                               p = arg_directory;
+                        if (arg_pivot_root_new)
+                                p = prefix_roota(arg_directory, arg_pivot_root_new);
+                        else
+                                p = arg_directory;
 
                         if (path_is_os_tree(p) <= 0) {
                                 log_error("Directory %s doesn't look like an OS root directory (os-release file is missing). Refusing.", p);
@@ -4209,10 +4209,10 @@ int main(int argc, char *argv[]) {
                 } else {
                         const char *p, *q;
 
-                       if (arg_pivot_root_new)
-                               p = prefix_roota(arg_directory, arg_pivot_root_new);
-                       else
-                               p = arg_directory;
+                        if (arg_pivot_root_new)
+                                p = prefix_roota(arg_directory, arg_pivot_root_new);
+                        else
+                                p = arg_directory;
 
                         q = strjoina(p, "/usr/");