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>2013-08-28 06:14:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-28 06:14:24 +0400
commit9e561a641ecd8db55a7bb67abe961b4f2eb1734d (patch)
tree6019a8e853243b65c7fc1df31360d1968874f1cd /source/blender/blenlib/intern/fileops.c
parent27df6a3b546bf4188b0f29bcb90df201a6730574 (diff)
remove callback BLI_localErrorCallBack from scanfill, was here for years and only ever wrapped printf.
Diffstat (limited to 'source/blender/blenlib/intern/fileops.c')
-rw-r--r--source/blender/blenlib/intern/fileops.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index 4809ba59aaf..55726565f59 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -215,6 +215,11 @@ bool BLI_file_touch(const char *file)
#ifdef WIN32
+static void callLocalErrorCallBack(const char *err)
+{
+ printf("%s\n", err);
+}
+
static char str[MAXPATHLEN + 12];
FILE *BLI_fopen(const char *filename, const char *mode)