diff options
author | Vinson Lee <vlee@vmware.com> | 2010-01-02 20:04:00 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-01-02 20:04:00 -0800 |
commit | fe27b07b0fe7b63755add9bf522d7efcbf1ffb9b (patch) | |
tree | 49a6b6b03fa587c595de94861e42e76f53b7ddd1 /src | |
parent | cdb445f3a9285e2d8f042a07021ade78b94e0156 (diff) |
glu/sgi: Initialize members of struct O_curve.
Diffstat (limited to 'src')
-rw-r--r-- | src/glu/sgi/libnurbs/internals/reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glu/sgi/libnurbs/internals/reader.h b/src/glu/sgi/libnurbs/internals/reader.h index 3390ce80e9..cae6cada46 100644 --- a/src/glu/sgi/libnurbs/internals/reader.h +++ b/src/glu/sgi/libnurbs/internals/reader.h @@ -64,7 +64,7 @@ struct O_curve : public PooledObj { int save; /* 1 if in display list */ long nuid; O_curve() { next = 0; used = 0; owner = 0; - curve.o_pwlcurve = 0; } + curve.o_pwlcurve = 0; curvetype = ct_none; save = 0; nuid = 0; } }; struct O_nurbscurve : public PooledObj { |