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>2015-10-25 09:44:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-10-25 09:44:32 +0300
commit0d59acccd33402295e2a18b4051a8192de555a36 (patch)
tree01721213b265e96734b3e89f0437c2b20373b207 /source/blender/blenkernel/BKE_suggestions.h
parent6f2aa50a727311cccd0f140408c077ffcb80feb8 (diff)
Use BLI_strncasecmp for text suggestions
Diffstat (limited to 'source/blender/blenkernel/BKE_suggestions.h')
-rw-r--r--source/blender/blenkernel/BKE_suggestions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_suggestions.h b/source/blender/blenkernel/BKE_suggestions.h
index c36a2d61968..9d2aab063ab 100644
--- a/source/blender/blenkernel/BKE_suggestions.h
+++ b/source/blender/blenkernel/BKE_suggestions.h
@@ -54,8 +54,8 @@ struct Text;
typedef struct SuggItem {
struct SuggItem *prev, *next;
- char *name;
char type;
+ char name[0];
} SuggItem;
typedef struct SuggList {