diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-01-31 19:30:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-01-31 19:30:54 +0100 |
commit | d7ba20b2fee50481b7091aef6c14986e7a0dee57 (patch) | |
tree | 0d83327b35940b7846d85a1c6fd0b64c94fb5b92 /registry | |
parent | 3f1624bc648420fd2a75257c5df0d99716e2bc73 (diff) |
warning C4701: potentially uninitialized local variable
Change-Id: I68f43b16f09e606b9e7ae384c76554a6763afa8d
Diffstat (limited to 'registry')
-rw-r--r-- | registry/tools/reg2bin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/tools/reg2bin.cxx b/registry/tools/reg2bin.cxx index d7f32e2eaa28..959f25d01d44 100644 --- a/registry/tools/reg2bin.cxx +++ b/registry/tools/reg2bin.cxx @@ -1117,7 +1117,7 @@ sal_uInt64 writeMap( j->parameters.begin()); k != j->parameters.end(); ++k) { - sal_uInt64 f; + sal_uInt64 f = sal_uInt64(); switch (k->mode) { case RT_PARAM_IN: f = 0; |