summaryrefslogtreecommitdiffstats
path: root/src/4a-internals-hal/4a-internals-hal-value-handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/4a-internals-hal/4a-internals-hal-value-handler.c')
-rw-r--r--src/4a-internals-hal/4a-internals-hal-value-handler.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/4a-internals-hal/4a-internals-hal-value-handler.c b/src/4a-internals-hal/4a-internals-hal-value-handler.c
index a8b0e2e..e9cb2a0 100644
--- a/src/4a-internals-hal/4a-internals-hal-value-handler.c
+++ b/src/4a-internals-hal/4a-internals-hal-value-handler.c
@@ -298,7 +298,7 @@ int InternalHalChangePreviousValuesUsingJson(afb_api_t apiHandle,
requestedPercentageVariation = (int) strtol(requestedPercentageVariationString, &conversionEnd, 10);
if(conversionEnd == requestedPercentageVariationString) {
AFB_API_ERROR(apiHandle,
- "Tried to increase/decrease an integer control"
+ "Tried to increase/decrease an integer control "
"but string sent in json is not a increase/decrease string : '%s'",
json_object_get_string(requestedPercentageVariationJ));
return -1;
@@ -307,7 +307,7 @@ int InternalHalChangePreviousValuesUsingJson(afb_api_t apiHandle,
if(alsaCtlProperties->type != SND_CTL_ELEM_TYPE_INTEGER &&
alsaCtlProperties->type != SND_CTL_ELEM_TYPE_INTEGER64) {
AFB_API_ERROR(apiHandle,
- "Tried to increase/decrease values on a incompatible"
+ "Tried to increase/decrease values on a incompatible "
"control type (%i), control type must be an integer",
alsaCtlProperties->type);
return -2;
@@ -315,7 +315,7 @@ int InternalHalChangePreviousValuesUsingJson(afb_api_t apiHandle,
if(requestedPercentageVariation < -100 || requestedPercentageVariation > 100) {
AFB_API_ERROR(apiHandle,
- "Tried to increase/decrease values but specified change is"
+ "Tried to increase/decrease values but specified change is "
"not a valid percentage, it should be between -100 and 100");
return -3;
}