Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-03-31 14:20:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-31 14:23:33 +0300
commit17a409e223a7b72fbfa89c97728017e5afcb54a5 (patch)
tree6e8adc5109f0fbf859f64fad0971e67f072638bc /source/blender/editors/space_file
parentb74e38861714be4aa36e2e10fbce8b3b21bb8adc (diff)
Cleanup: use '_recursive' suffix instead of '_rec'
This convention isn't very clear and wasn't used much. Use the more verbose term instead.
Diffstat (limited to 'source/blender/editors/space_file')
-rw-r--r--source/blender/editors/space_file/filelist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c
index dec38501d38..1396c0a2f69 100644
--- a/source/blender/editors/space_file/filelist.c
+++ b/source/blender/editors/space_file/filelist.c
@@ -2627,7 +2627,7 @@ static int filelist_readjob_list_lib(const char *root, ListBase *entries, const
/* Kept for reference here, in case we want to add back that feature later.
* We do not need it currently. */
/* Code ***NOT*** updated for job stuff! */
-static void filelist_readjob_main_rec(Main *bmain, FileList *filelist)
+static void filelist_readjob_main_recursive(Main *bmain, FileList *filelist)
{
ID *id;
FileDirEntry *files, *firstlib = NULL;