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:
authorJoshua Leung <aligorith@gmail.com>2007-09-18 12:29:18 +0400
committerJoshua Leung <aligorith@gmail.com>2007-09-18 12:29:18 +0400
commitdf4505b4effde1e324f86300a4b7019f1d12f33e (patch)
treee2a3750b253b79801f37922695f2ab4a31fe3f68 /source/blender/blenlib
parent0a2b8b13089ef479d4a2d135b567410c8a5e6ab5 (diff)
Missing newline character in printf
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/util.c b/source/blender/blenlib/intern/util.c
index 688503269ea..1efc6a0b240 100644
--- a/source/blender/blenlib/intern/util.c
+++ b/source/blender/blenlib/intern/util.c
@@ -1203,7 +1203,7 @@ void BLI_split_dirfile(const char *string, char *dir, char *file)
if(a>=4 && dir[a-1]=='\\') dir[a-1] = 0;
if (is_relative) {
- printf("WARNING: BLI_split_dirfile needs absolute dir");
+ printf("WARNING: BLI_split_dirfile needs absolute dir\n");
}
else {
BLI_make_exist(dir);