summaryrefslogtreecommitdiffstats
path: root/src/4a-internals-hal/4a-internals-hal-cb.c
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2019-05-28 14:50:09 +0200
committerJonathan Aillet <jonathan.aillet@iot.bzh>2019-05-29 14:45:48 +0200
commitd915272ab0fef010d0cc84710588cb947f5215d2 (patch)
tree2b4901be00022f87fe3363e46c03ee80b3ab9888 /src/4a-internals-hal/4a-internals-hal-cb.c
parent94654c6b4241bcb024dd92a6b86edf611f421deb (diff)
Add forgotten spaces in some multi-lines prints
Add forgotten spaces in some multi-lines prints. BUG-AGL: SPEC-2329 Change-Id: I84457ac695a613b3cf280c3e8fb4f25b71070438 Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to 'src/4a-internals-hal/4a-internals-hal-cb.c')
-rw-r--r--src/4a-internals-hal/4a-internals-hal-cb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/4a-internals-hal/4a-internals-hal-cb.c b/src/4a-internals-hal/4a-internals-hal-cb.c
index 14b3a1a..451572e 100644
--- a/src/4a-internals-hal/4a-internals-hal-cb.c
+++ b/src/4a-internals-hal/4a-internals-hal-cb.c
@@ -97,14 +97,14 @@ void InternalHalDispatchApiEvent(afb_api_t apiHandle, const char *evtLabel, json
}
else if(currentHalAlsaCtlsT->ctls[idx].actionJ) {
AFB_API_WARNING(apiHandle,
- "The alsa control id '%i' is corresponding to a known control which"
+ "The alsa control id '%i' is corresponding to a known control which "
"has a registered action, but action is not ready to be executed",
numid);
return;
}
else {
AFB_API_NOTICE(apiHandle,
- "The alsa control id '%i' is corresponding to a known control"
+ "The alsa control id '%i' is corresponding to a known control "
"but without any action registered",
numid);
}
@@ -297,7 +297,7 @@ int InternalHalHandleOneHalMapObject(afb_api_t apiHandle, char *cardId, struct I
toLoadAction = calloc(1, sizeof(CtlActionT));
if(! toLoadAction) {
AFB_API_ERROR(apiHandle,
- "Didn't succeed to allocate structure used to store action to perform"
+ "Didn't succeed to allocate structure used to store action to perform "
"when the corresponding ALSA control is detected");
return -4;
}