Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more
Diff: lock_rtx_mbed.cpp
- Revision:
- 1:9190c0f4d23a
- Parent:
- 0:fa2de1b79154
- Child:
- 6:c55b013dfc2a
diff -r fa2de1b79154 -r 9190c0f4d23a lock_rtx_mbed.cpp
--- a/lock_rtx_mbed.cpp Fri Apr 08 12:01:36 2016 -0700
+++ b/lock_rtx_mbed.cpp Sun Apr 24 16:41:14 2016 -0700
@@ -28,7 +28,7 @@
{
/*Tests_SRS_LOCK_99_007:[ This API on NULL handle passed returns LOCK_ERROR]*/
result = LOCK_ERROR;
- LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+ LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
}
else
{
@@ -42,7 +42,7 @@
{
/*Tests_SRS_LOCK_99_006:[ This API on error should return LOCK_ERROR]*/
result = LOCK_ERROR;
- LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+ LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
}
}
return result;
@@ -54,7 +54,7 @@
{
/*Tests_SRS_LOCK_99_011:[ This API on NULL handle passed returns LOCK_ERROR]*/
result = LOCK_ERROR;
- LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+ LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
}
else
{
@@ -68,7 +68,7 @@
{
/*Tests_SRS_LOCK_99_010:[ This API on error should return LOCK_ERROR]*/
result = LOCK_ERROR;
- LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+ LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
}
}
return result;
@@ -81,7 +81,7 @@
{
/*Tests_SRS_LOCK_99_013:[ This API on NULL handle passed returns LOCK_ERROR]*/
result = LOCK_ERROR;
- LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+ LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
}
else
{
