diff options
author | Jose <jose@zeroc.com> | 2024-03-15 13:50:16 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2024-03-15 13:50:16 +0100 |
commit | 2b2af9df5f3bebdd620680777abb4f2d096db9cf (patch) | |
tree | dbcfa37d30f7ec7742e947871e668852395ef5d1 /cpp/src | |
parent | Remove workaround for old proguard version (#1913) (diff) | |
download | ice-2b2af9df5f3bebdd620680777abb4f2d096db9cf.tar.bz2 ice-2b2af9df5f3bebdd620680777abb4f2d096db9cf.tar.xz ice-2b2af9df5f3bebdd620680777abb4f2d096db9cf.zip |
Missing error return
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceGrid/Client.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/Client.cpp b/cpp/src/IceGrid/Client.cpp index df817c3e6d7..11ea8009029 100644 --- a/cpp/src/IceGrid/Client.cpp +++ b/cpp/src/IceGrid/Client.cpp @@ -564,6 +564,7 @@ run(const Ice::StringSeq& args) if(!registry) { consoleErr << args[0] << ": could not contact an IceGrid registry" << endl; + return 1; } } catch(const Ice::ObjectNotFoundException&) |