summaryrefslogtreecommitdiffstats
path: root/src/afc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/afc.c')
-rw-r--r--src/afc.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/afc.c b/src/afc.c
index e3da184..bdfa30e 100644
--- a/src/afc.c
+++ b/src/afc.c
@@ -1371,15 +1371,15 @@ afc_error_t afc_set_file_time(afc_client_t client, const char *path, uint64_t mt
afc_error_t afc_dictionary_free(char **dictionary)
{
- int i = 0;
+ int i = 0;
- if (!dictionary)
- return AFC_E_INVALID_ARG;
+ if (!dictionary)
+ return AFC_E_INVALID_ARG;
- for (i = 0; dictionary[i]; i++) {
- free(dictionary[i]);
- }
- free(dictionary);
+ for (i = 0; dictionary[i]; i++) {
+ free(dictionary[i]);
+ }
+ free(dictionary);
- return AFC_E_SUCCESS;
+ return AFC_E_SUCCESS;
}