Skip to content

Commit 43761c5

Browse files
author
Stewart Henderson
authored
Merge pull request #2 from mzhaom/master
Synchronize
2 parents fa2a956 + 4e1d117 commit 43761c5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.gitmodules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,6 @@
227227
[submodule "third_party/openssl/src"]
228228
path = third_party/openssl/src
229229
url = https://github.com/openssl/openssl.git
230-
[submodule "third_party/nanopb/upstream"]
231-
path = third_party/nanopb/upstream
232-
url = https://github.com/nanopb/nanopb.git
230+
[submodule "third_party/nanopb"]
231+
path = third_party/nanopb
232+
url = https://github.com/LuminateWireless/nanopb.git

examples/rpc/bank-client.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ static void RunClient() {
3333
if (status.ok()) {
3434
LOG(INFO) << response.account() << " balance:" << response.balance();
3535
} else {
36-
LOG(INFO) << "Rpc failed";
36+
LOG(INFO) << "Rpc failed: " << status.error_code();
3737
}
3838
}
3939

4040
} // namespace examples
4141

4242
int main(int argc, char** argv) {
4343
google::InstallFailureSignalHandler();
44-
google::ParseCommandLineFlags(&argc, &argv, false);
44+
gflags::ParseCommandLineFlags(&argc, &argv, false);
4545
google::InitGoogleLogging(argv[0]);
4646
examples::RunClient();
4747

third_party/nanopb

Submodule nanopb added at 4e34042

third_party/nanopb/upstream

Lines changed: 0 additions & 1 deletion
This file was deleted.

third_party/protobuf/upstream

0 commit comments

Comments
 (0)