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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-01-20 14:21:04 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-01-20 18:51:05 +0300
commit2666a222f62ea7b33aa1a72ea0ca504ca10383de (patch)
treecd1083e920cc89f20f2f5455e2bf1f816b0d9b1b /source/blender/blenlib/BLI_string_utils.h
parent404e59c842fe04630dc4173e774443887d7a3cb0 (diff)
Cleanup/fix last remnant usages of int instead of size_t for string length in BLI_string_utils.
Diffstat (limited to 'source/blender/blenlib/BLI_string_utils.h')
-rw-r--r--source/blender/blenlib/BLI_string_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_string_utils.h b/source/blender/blenlib/BLI_string_utils.h
index 719d6e3c57b..bb19ed574bb 100644
--- a/source/blender/blenlib/BLI_string_utils.h
+++ b/source/blender/blenlib/BLI_string_utils.h
@@ -44,7 +44,7 @@ struct ListBase;
typedef bool (*UniquenameCheckCallback)(void *arg, const char *name);
-int BLI_split_name_num(char *left, int *nr, const char *name, const char delim);
+size_t BLI_split_name_num(char *left, int *nr, const char *name, const char delim);
void BLI_string_split_suffix(const char *string, char *r_body, char *r_suf, const size_t str_len);
void BLI_string_split_prefix(const char *string, char *r_pre, char *r_body, const size_t str_len);