little change to delete warning

This commit is contained in:
paradiseo 2009-01-27 16:26:44 +00:00
commit eca555a7a3
2 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,7 @@ public:
clock_t tick = clock();
if ( (tick-last_tick) >= seconds * CLOCKS_PER_SEC) {
if ( (unsigned)(tick-last_tick) >= seconds * CLOCKS_PER_SEC) {
monitor = true;
}