Make test_track_devices.cpp output easier to read.

Change-Id: I2d85cdbe591a6ee9763e742805f281cb26d7b122
This commit is contained in:
Elliott Hughes 2015-05-04 15:51:50 -07:00
parent 14799c6249
commit 2e57163f53
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ int main(int argc, char* argv[]) {
if (!android::base::ReadFully(s, buffer, len))
panic("could not read data");
printf( "received header %.*s (%d bytes):\n%.*s", 4, head, len, len, buffer );
printf( "received header %.*s (%d bytes):\n%.*s----\n", 4, head, len, len, buffer );
}
close(s);
}