Use spaces for indentation, not tabs.
[gnulib.git] / lib / file-set.c
index 46dcf5f..98b4b86 100644 (file)
@@ -42,15 +42,15 @@ record_file (Hash_table *ht, char const *file, struct stat const *stats)
     struct F_triple *ent_from_table = hash_insert (ht, ent);
     if (ent_from_table == NULL)
       {
-       /* Insertion failed due to lack of memory.  */
-       xalloc_die ();
+        /* Insertion failed due to lack of memory.  */
+        xalloc_die ();
       }
 
     if (ent_from_table != ent)
       {
-       /* There was alread a matching entry in the table, so ENT was
-          not inserted.  Free it.  */
-       triple_free (ent);
+        /* There was alread a matching entry in the table, so ENT was
+           not inserted.  Free it.  */
+        triple_free (ent);
       }
   }
 }
@@ -59,7 +59,7 @@ record_file (Hash_table *ht, char const *file, struct stat const *stats)
    for the file described by FILE and STATS.  */
 bool
 seen_file (Hash_table const *ht, char const *file,
-          struct stat const *stats)
+           struct stat const *stats)
 {
   struct F_triple new_ent;