make it compile with g++ 3.0 also

This commit is contained in:
Arnout Engelen
2004-09-17 19:40:45 +00:00
parent 498a3df635
commit 389238c51a
3 changed files with 5 additions and 5 deletions

View File

@@ -172,7 +172,7 @@ bool sameinaddr(in_addr one, in_addr other)
}
bool Packet::isOlderThan (timeval t) {
std::cout << "Comparing " << time.tv_sec << " <= " << t.tv_sec << endl;
std::cout << "Comparing " << time.tv_sec << " <= " << t.tv_sec << std::endl;
return (time.tv_sec <= t.tv_sec);
}