summaryrefslogtreecommitdiffstats
path: root/aclk
diff options
context:
space:
mode:
authorTimotej S <6674623+underhood@users.noreply.github.com>2021-11-03 12:20:29 +0100
committerGitHub <noreply@github.com>2021-11-03 12:20:29 +0100
commit4c6efc3a6ef07a757a678d85726ba85802c57c82 (patch)
tree437e832bfc7c38ca506f3b2fe305c8c2a55093bc /aclk
parentd101b9b7f6d5e0742d453d3ff976b4b2be1d73e0 (diff)
minor - fix typo popocorn->popcorn (#11745)
Diffstat (limited to 'aclk')
-rw-r--r--aclk/aclk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/aclk/aclk.c b/aclk/aclk.c
index 709a881b7e..9eaef2723e 100644
--- a/aclk/aclk.c
+++ b/aclk/aclk.c
@@ -409,12 +409,12 @@ static int wait_popcorning_finishes()
if (elapsed >= ACLK_STABLE_TIMEOUT) {
aclk_shared_state.agent_state = ACLK_HOST_STABLE;
ACLK_SHARED_STATE_UNLOCK;
- error("ACLK localhost popocorn finished");
+ error("ACLK localhost popcorn timer finished");
return 0;
}
ACLK_SHARED_STATE_UNLOCK;
need_wait = ACLK_STABLE_TIMEOUT - elapsed;
- error("ACLK localhost popocorn wait %d seconds longer", need_wait);
+ error("ACLK localhost popcorn timer - wait %d seconds longer", need_wait);
sleep(need_wait);
}
return 1;