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:
authorRicki Myers <antihc3@gmail.com>2006-03-05 22:56:31 +0300
committerRicki Myers <antihc3@gmail.com>2006-03-05 22:56:31 +0300
commit8ba4f45ec69b70c5383367eb619833c1b81fea17 (patch)
treecec987cd5535b5cad6e9f1fff5cdce4f86382aa4 /source/blender/src/drawtext.c
parent7cf600be30090136e43cdbf6b5ea88c5f3c084a9 (diff)
Removes warning in drawtext.c
Diffstat (limited to 'source/blender/src/drawtext.c')
-rw-r--r--source/blender/src/drawtext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawtext.c b/source/blender/src/drawtext.c
index 23a881ea72a..7e5e92a1842 100644
--- a/source/blender/src/drawtext.c
+++ b/source/blender/src/drawtext.c
@@ -168,7 +168,7 @@ void free_txt_data(void) {
static int render_string (char *in) {
SpaceText *st= curarea->spacedata.first;
- int r= 0, i;
+ int r = 0, i = 0;
while(*in) {
if (*in=='\t') {