diff lib/file-set.c @ 12421:e8d2c6fc33ad

Use spaces for indentation, not tabs.
author Bruno Haible <bruno@clisp.org>
date Thu, 10 Dec 2009 20:28:30 +0100
parents bbbbbf4cd1c5
children b5e42ef33b49
line wrap: on
line diff
--- a/lib/file-set.c
+++ b/lib/file-set.c
@@ -42,15 +42,15 @@
     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 @@
    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;