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:
authorKen Hughes <khughes@pacific.edu>2008-02-03 21:50:03 +0300
committerKen Hughes <khughes@pacific.edu>2008-02-03 21:50:03 +0300
commitab662ae85c4c9d3a2e28f1c26926934708f57482 (patch)
treec8cbaefc695d3dcbd928b212f3c971f1b7585f72 /source/blender/blenlib
parent91439e7604ccb3faaaa55b80a9fb7e185842753e (diff)
More fixes for gcc warnings.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/psfont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/psfont.c b/source/blender/blenlib/intern/psfont.c
index 941bf4204a8..1fcb6653dc9 100644
--- a/source/blender/blenlib/intern/psfont.c
+++ b/source/blender/blenlib/intern/psfont.c
@@ -1949,7 +1949,7 @@ static VFontData *objfnt_to_vfontdata(objfnt *fnt)
chardesc *cd;
short *_data, *data;
int a, i, count, stop, ready, meet;
- short first[2], last[2];
+ short first[2]={0,0}, last[2]={0,0};
struct Nurb *nu;
struct BezTriple *bezt, *bez2;
float scale, dx, dy;