diff options
Diffstat (limited to 'src/afc.c')
| -rw-r--r-- | src/afc.c | 16 | 
1 files changed, 8 insertions, 8 deletions
@@ -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;  }  | 
