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>2021-07-16 04:45:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-16 04:45:03 +0300
commitd3c454d66c0a730eafa7edecec158ca3b9edb2d7 (patch)
tree6cc91044bc3c56a51afcc006ece14d1e7ed91f12 /source/blender/windowmanager/intern/wm_uilist_type.c
parent98c4224ff032a746a54cc04b6d9a485620de0f4a (diff)
Cleanup: compiler warnings
Diffstat (limited to 'source/blender/windowmanager/intern/wm_uilist_type.c')
-rw-r--r--source/blender/windowmanager/intern/wm_uilist_type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_uilist_type.c b/source/blender/windowmanager/intern/wm_uilist_type.c
index 468ea7e4d5b..53193deae8c 100644
--- a/source/blender/windowmanager/intern/wm_uilist_type.c
+++ b/source/blender/windowmanager/intern/wm_uilist_type.c
@@ -163,7 +163,7 @@ void WM_uilisttype_free(void)
*/
void WM_uilisttype_to_full_list_id(const uiListType *ult,
const char *list_id,
- char r_full_list_id[UI_MAX_NAME_STR])
+ char r_full_list_id[/*UI_MAX_NAME_STR*/])
{
/* We tag the list id with the list type... */
BLI_snprintf(r_full_list_id, UI_MAX_NAME_STR, "%s_%s", ult->idname, list_id ? list_id : "");