commit | c2b7b1426c2c3ca07f4f1318eb5eb3f00de05d0d | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Thu Sep 12 15:29:04 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Thu Sep 12 15:29:04 2013 -0700 |
tree | 8c7bc8de9880ce00caed33cade8b85012388d306 | |
parent | d0be471fa490b4f3d7e5813bb2e67bca88648cae [diff] [blame] |
Change wire encoding to return a Blob.
diff --git a/tests/test-get-async.cpp b/tests/test-get-async.cpp index 3c55b31..7c92997 100644 --- a/tests/test-get-async.cpp +++ b/tests/test-get-async.cpp
@@ -29,7 +29,7 @@ ++callbackCount_; cout << "Got data packet with name " << data->getName().to_uri() << endl; for (unsigned int i = 0; i < data->getContent().size(); ++i) - cout << data->getContent()[i]; + cout << (*data->getContent())[i]; cout << endl; }