summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-01-01 14:39:16 -0800
committerVinson Lee <vlee@vmware.com>2010-01-01 14:39:16 -0800
commitb6b4e497f5c969478dfb8900254f16e4442534b2 (patch)
treec81b8a05c1ad409e24c3aaed95e77a3bfe123bb8 /src
parent853df9bb2595a8ef867ffd8f7e610959431a6a15 (diff)
downloadglu-b6b4e497f5c969478dfb8900254f16e4442534b2.tar.gz
glu/sgi: Initialize member of struct Property.
Diffstat (limited to 'src')
-rw-r--r--src/libnurbs/internals/reader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnurbs/internals/reader.h b/src/libnurbs/internals/reader.h
index 3f259c7..e5ec182 100644
--- a/src/libnurbs/internals/reader.h
+++ b/src/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;