diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-08-02 14:38:48 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-08-02 14:38:48 +0000 |
commit | e07949f8d4ec0f91af4bddcaffd36ff8f830d518 (patch) | |
tree | 8c78ec1cf2066f86103eebf47ab2651c149927a8 /rb/src/IceRuby/Proxy.cpp | |
parent | ICE_HOME fixes (diff) | |
download | ice-e07949f8d4ec0f91af4bddcaffd36ff8f830d518.tar.bz2 ice-e07949f8d4ec0f91af4bddcaffd36ff8f830d518.tar.xz ice-e07949f8d4ec0f91af4bddcaffd36ff8f830d518.zip |
fixing warnings
Diffstat (limited to 'rb/src/IceRuby/Proxy.cpp')
-rw-r--r-- | rb/src/IceRuby/Proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rb/src/IceRuby/Proxy.cpp b/rb/src/IceRuby/Proxy.cpp index c4b0cfc0c87..402c04924c0 100644 --- a/rb/src/IceRuby/Proxy.cpp +++ b/rb/src/IceRuby/Proxy.cpp @@ -606,7 +606,7 @@ IceRuby_ObjectPrx_ice_getEndpointSelection(VALUE self) Ice::EndpointSelectionType type = p->ice_getEndpointSelection(); VALUE cls = callRuby(rb_path2class, "Ice::EndpointSelectionType"); assert(!NIL_P(cls)); - ID name; + ID name = 0; switch(type) { case Ice::Random: |