fix some indentation

This commit is contained in:
josch
2014-12-30 19:12:49 +01:00
parent a1f39e8d4f
commit d1a778ffe5
3 changed files with 7 additions and 9 deletions

View File

@@ -798,7 +798,6 @@ int folder_tree_open_file(folder_tree * tree, mfconn * conn, const char *path,
* was necessary */ * was necessary */
entry->local_revision = entry->remote_revision; entry->local_revision = entry->remote_revision;
} }
// however the file was opened, its access time has to be updated // however the file was opened, its access time has to be updated
entry->atime = time(NULL); entry->atime = time(NULL);
@@ -1947,7 +1946,6 @@ void folder_tree_cleanup_filecache(folder_tree *tree, uint64_t allowed_size)
free(cachefiles); free(cachefiles);
return; return;
} }
// sort the files in the cache by their access time // sort the files in the cache by their access time
qsort(cachefiles, num_cachefiles, sizeof(struct h_entry *), atime_compare); qsort(cachefiles, num_cachefiles, sizeof(struct h_entry *), atime_compare);