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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-09-02 15:19:21 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-09-02 15:19:21 +0400
commit26bfda6fadc83dcf35ab5a5208a32e506503d082 (patch)
tree95ad377a9e66b707930c390170e2b2168d618301 /source/blender/blenlib
parent1050bb37fb00858ab7591f6a4f7945f89c335670 (diff)
Some function didn't match their declaration
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/path_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index bcdc226a2a7..68e0f2c4026 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -1695,7 +1695,7 @@ void BLI_split_file_part(const char *string, char *file, const size_t filelen)
/**
* Append a filename to a dir, ensuring slash separates.
*/
-void BLI_path_append(char *dst, const size_t maxlen, const char *file)
+void BLI_path_append(char *__restrict dst, const size_t maxlen, const char *__restrict file)
{
size_t dirlen = BLI_strnlen(dst, maxlen);
@@ -1716,7 +1716,7 @@ void BLI_path_append(char *dst, const size_t maxlen, const char *file)
* Simple appending of filename to dir, does not check for valid path!
* Puts result into *dst, which may be same area as *dir.
*/
-void BLI_join_dirfile(char *dst, const size_t maxlen, const char *dir, const char *file)
+void BLI_join_dirfile(char *__restrict dst, const size_t maxlen, const char *__restrict dir, const char *__restrict file)
{
size_t dirlen = BLI_strnlen(dir, maxlen);