Tatsuhiro Tsujikawa 12 vuotta sitten
vanhempi
commit
9e35750bb8
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      src/DefaultBtInteractive.h

+ 2 - 2
src/DefaultBtInteractive.h

@@ -72,13 +72,13 @@ public:
 
 
   void incChokeUnchokeCount() {
   void incChokeUnchokeCount() {
     if(chokeUnchokeCount < INT_MAX) {
     if(chokeUnchokeCount < INT_MAX) {
-      chokeUnchokeCount++;
+      ++chokeUnchokeCount;
     }
     }
   }
   }
 
 
   void incKeepAliveCount() {
   void incKeepAliveCount() {
     if(keepAliveCount < INT_MAX) {
     if(keepAliveCount < INT_MAX) {
-      keepAliveCount++;
+      ++keepAliveCount;
     }
     }
   }
   }