From ab342d37b3210e98936aa2630791f2143ddaeb3a Mon Sep 17 00:00:00 2001 From: schmirl Date: Mon, 15 Jan 2007 11:36:37 +0000 Subject: Replace uint64 by uint64_t (#200) --- client/socket.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/socket.c b/client/socket.c index eca23ff..d814d9d 100644 --- a/client/socket.c +++ b/client/socket.c @@ -1,11 +1,12 @@ /* - * $Id: socket.c,v 1.4 2005/02/08 17:22:35 lordjaxom Exp $ + * $Id: socket.c,v 1.5 2007/01/15 11:36:37 schmirl Exp $ */ #include #include #include #include +#include #include "client/socket.h" #include "client/setup.h" @@ -54,7 +55,7 @@ bool cClientSocket::Command(const std::string &Command, uint Expected, uint Time return false; } - uint64 elapsed = starttime.Elapsed(); + uint64_t elapsed = starttime.Elapsed(); if (Expected != 0) { // XXX+ What if elapsed > TimeoutMs? TimeoutMs -= elapsed; return Expect(Expected, NULL, TimeoutMs); -- cgit v1.2.3