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>2011-02-13 18:02:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-13 18:02:21 +0300
commit59f1640ae5f53e2360fec2634fdc7d2ec85e2989 (patch)
treef2f36528a67424b74f3cf305643d04cd64782284 /source/blender/editors/space_text/text_python.c
parent0852278ce76fe7412344eeb7e577d0dbdab0ff75 (diff)
warning cleanup.
- fix mistake with grease pencil UI (&& was intended but & used). - use (void) rather then () across _all_ blenders code. - a few minor edits, don't shadow stack variables in roll calculation & avoid running memset() for VBO vertex map.
Diffstat (limited to 'source/blender/editors/space_text/text_python.c')
-rw-r--r--source/blender/editors/space_text/text_python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/text_python.c b/source/blender/editors/space_text/text_python.c
index 1c75e6f65ca..e6f201e4147 100644
--- a/source/blender/editors/space_text/text_python.c
+++ b/source/blender/editors/space_text/text_python.c
@@ -98,7 +98,7 @@ int text_do_suggest_select(SpaceText *st, ARegion *ar)
return 1;
}
-void text_pop_suggest_list()
+void text_pop_suggest_list(void)
{
SuggItem *item, *sel;
int *top, i;