diff options
author | Vinson Lee <[email protected]> | 2010-01-01 14:39:16 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-01-01 14:39:16 -0800 |
commit | 5d3d202ac991bd1a67ba40f4be145621b35620fe (patch) | |
tree | d4e07cee1d70f59935b37d06e654881d6aa87e01 /src/glu | |
parent | 195e7657e2f15f7ad8b22042b86bcf33c5bba76b (diff) |
glu/sgi: Initialize member of struct Property.
Diffstat (limited to 'src/glu')
-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 3f259c777b5..e5ec1827dbf 100644 --- a/src/glu/sgi/libnurbs/internals/reader.h +++ b/src/glu/sgi/libnurbs/internals/reader.h @@ -125,7 +125,7 @@ struct Property : public PooledObj { Property( long _type, long _tag, INREAL _value ) { type = _type; tag = _tag; value = (REAL) _value; } Property( long _tag, INREAL _value ) - { type = 0; tag = _tag; value = (REAL) _value; } + { type = 0; tag = _tag; value = (REAL) _value; save = 0; } }; class NurbsTessellator; |