summaryrefslogtreecommitdiff
path: root/lib/file-set.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-12-10 20:28:30 +0100
committerBruno Haible <bruno@clisp.org>2009-12-10 20:28:30 +0100
commit441aa3044f43e5572f58c354f01e6bc070acd5c7 (patch)
treebef236e8058dd3469da28ffcd5a6a287222a4c50 /lib/file-set.c
parent039ae97b8ae35a2446c5d62d72b21689c97da7e2 (diff)
downloadgnulib-441aa3044f43e5572f58c354f01e6bc070acd5c7.tar.gz
Use spaces for indentation, not tabs.
Diffstat (limited to 'lib/file-set.c')
-rw-r--r--lib/file-set.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/file-set.c b/lib/file-set.c
index 46dcf5fbb4..98b4b86055 100644
--- a/lib/file-set.c
+++ b/lib/file-set.c
@@ -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;