summaryrefslogtreecommitdiffstats
path: root/jdwpspy/Net.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-04-04 16:53:10 -0700
committerElliott Hughes <enh@google.com>2012-04-04 16:53:10 -0700
commit460384f04f933f94546db7bfbfa02896b9e77962 (patch)
treee95299a4a62f63c9a3ca981d26993f440f2b02c0 /jdwpspy/Net.cpp
parent5e284224e5525ee0a8494a73d84c8ef86e022a0a (diff)
downloadandroid_art-460384f04f933f94546db7bfbfa02896b9e77962.tar.gz
android_art-460384f04f933f94546db7bfbfa02896b9e77962.tar.bz2
android_art-460384f04f933f94546db7bfbfa02896b9e77962.zip
Use the operator<< generator more widely.
Change-Id: Iae3b8f32f49f4c91cd41c53bbafb95db071d57bb
Diffstat (limited to 'jdwpspy/Net.cpp')
-rw-r--r--jdwpspy/Net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/jdwpspy/Net.cpp b/jdwpspy/Net.cpp
index abcae2144a..55515f1e0a 100644
--- a/jdwpspy/Net.cpp
+++ b/jdwpspy/Net.cpp
@@ -510,7 +510,7 @@ static void dumpPacket(const unsigned char* packetBuf, const char* srcName,
printf("%s --> %s\n", prefix, getCommandName(cmdSet, cmd));
} else {
std::ostringstream ss;
- ss << error;
+ ss << "TODO"; // get access to the operator<<, or regenerate it for jdwpspy?
printf("%s REPLY dataLen=%-5u id=0x%08x flags=0x%02x err=%d (%s) [%02d:%02d]\n",
prefix, dataLen, id, flags, error, ss.str().c_str(), min,sec);
}