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:
authorDaniel Dunbar <daniel@zuster.org>2005-10-09 20:57:49 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-10-09 20:57:49 +0400
commitaf8b6230023b8f9eaece4e1789689babc1240f20 (patch)
tree5c0d2931f3412aa24309ab818da8cc5e1751a219 /source/blender/src/interface.c
parentb9e6e0c2ecb66e4233be9e0af0b5991d1baaf1bf (diff)
o some warning fixes (compare of int to NULL, missing prototype)
Diffstat (limited to 'source/blender/src/interface.c')
-rw-r--r--source/blender/src/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index af6b0df76e8..c244b73559d 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -966,7 +966,7 @@ static MenuData *menudata_new(char *instr) {
md->instr= instr;
md->title= NULL;
- md->titleicon= NULL;
+ md->titleicon= 0;
md->items= NULL;
md->nitems= md->itemssize= 0;