summaryrefslogtreecommitdiff
path: root/client/Proxy.h
diff options
context:
space:
mode:
authorAlex <b0ris@b0ris-satellite.localdomain>2011-11-03 16:21:29 +0200
committerAlex <b0ris@b0ris-satellite.localdomain>2011-11-03 16:21:29 +0200
commitda3277b21e4a947691df84eb35f675c6f06a4369 (patch)
tree4ff43488cc88247ba07e9114b63305469b822188 /client/Proxy.h
parentc0c86b6cab64186e97285e1b5b1ef13062926d87 (diff)
Fix compiler warnings
Diffstat (limited to 'client/Proxy.h')
-rw-r--r--client/Proxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/Proxy.h b/client/Proxy.h
index 0194db4..368f2b8 100644
--- a/client/Proxy.h
+++ b/client/Proxy.h
@@ -33,8 +33,8 @@ class ProxyEntryStatic: public Proxy
{
public:
std::string name;
- int position;
- int speed; //kb per second
+ unsigned position;
+ unsigned speed; //kb per second
ProxyEntryStatic(): Proxy(), position(0), speed(0) {}
virtual void Parse(std::string entry);