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>2019-01-11 02:50:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-11 02:53:21 +0300
commit6439ed844e7814fdc65e675bc851642382b72b60 (patch)
tree065bcfe5ad3a51815f9994d67a61eaf28f4047e0 /source/blender/blenloader
parent638079af204a5ff438928ff16802ec2fe51c46f7 (diff)
Cleanup: remove tabs after line start
Allows expanding tabs before running clang-format.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index dddf25696b3..54f269a35f0 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10850,9 +10850,9 @@ static void read_libraries(FileData *basefd, ListBase *mainlist)
while (fd == NULL) {
char newlib_path[FILE_MAX] = {0};
printf("Missing library...'\n");
- printf(" current file: %s\n", BKE_main_blendfile_path_from_global());
- printf(" absolute lib: %s\n", mainptr->curlib->filepath);
- printf(" relative lib: %s\n", mainptr->curlib->name);
+ printf("\tcurrent file: %s\n", BKE_main_blendfile_path_from_global());
+ printf("\tabsolute lib: %s\n", mainptr->curlib->filepath);
+ printf("\trelative lib: %s\n", mainptr->curlib->name);
printf(" enter a new path:\n");
if (scanf("%1023s", newlib_path) > 0) { /* Warning, keep length in sync with FILE_MAX! */