minor - fix typo popocorn->popcorn (#11745)
Timotej S committed
Nov 3, 2021 at 12:20 UTC
4c6efc3a6ef07a757a678d85726ba85802c57c82
1 file changed
+2
-2
aclk/aclk.c
+2
-2
@@ -409,12 +409,12 @@ static int wait_popcorning_finishes()
409
if (elapsed >= ACLK_STABLE_TIMEOUT) {
410
aclk_shared_state.agent_state = ACLK_HOST_STABLE;
411
ACLK_SHARED_STATE_UNLOCK;
412
- error("ACLK localhost popocorn finished");
412
+ error("ACLK localhost popcorn timer finished");
413
return 0;
414
}
415
ACLK_SHARED_STATE_UNLOCK;
416
need_wait = ACLK_STABLE_TIMEOUT - elapsed;
417
- error("ACLK localhost popocorn wait %d seconds longer", need_wait);
417
+ error("ACLK localhost popcorn timer - wait %d seconds longer", need_wait);
418
sleep(need_wait);
419
}
420
return 1;