little change to delete warning
This commit is contained in:
parent
6563aa6e7a
commit
eca555a7a3
2 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue