diff --git a/src/DefaultBtInteractive.h b/src/DefaultBtInteractive.h index d64227d1..b26d5e81 100644 --- a/src/DefaultBtInteractive.h +++ b/src/DefaultBtInteractive.h @@ -72,13 +72,13 @@ public: void incChokeUnchokeCount() { if(chokeUnchokeCount < INT_MAX) { - chokeUnchokeCount++; + ++chokeUnchokeCount; } } void incKeepAliveCount() { if(keepAliveCount < INT_MAX) { - keepAliveCount++; + ++keepAliveCount; } }