Fix compiling of DTSC version branch.
This commit is contained in:
parent
e080363196
commit
f01c686997
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ int main(int argc, char ** argv) {
|
||||||
}
|
}
|
||||||
//transport ~50kb at a time
|
//transport ~50kb at a time
|
||||||
//this is a nice tradeoff between CPU usage and speed
|
//this is a nice tradeoff between CPU usage and speed
|
||||||
char buffer[50000];
|
const char buffer[50000] = {0};
|
||||||
while(std::cout.good() && S.read(buffer,50000)){std::cout.write(buffer,50000);}
|
while(std::cout.good() && S.read(buffer,50000)){std::cout.write(buffer,50000);}
|
||||||
S.close();
|
S.close();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue