summaryrefslogtreecommitdiff
path: root/utility/rtos_compatibility_layers/posix/px_sem_unlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'utility/rtos_compatibility_layers/posix/px_sem_unlink.c')
-rw-r--r--utility/rtos_compatibility_layers/posix/px_sem_unlink.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/utility/rtos_compatibility_layers/posix/px_sem_unlink.c b/utility/rtos_compatibility_layers/posix/px_sem_unlink.c
index 2d7c1e69..564bb224 100644
--- a/utility/rtos_compatibility_layers/posix/px_sem_unlink.c
+++ b/utility/rtos_compatibility_layers/posix/px_sem_unlink.c
@@ -32,7 +32,7 @@
/* FUNCTION RELEASE */
/* */
/* sem_unlink PORTABLE C */
-/* 6.1.7 */
+/* 6.2.0 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
@@ -65,7 +65,9 @@
/* */
/* DATE NAME DESCRIPTION */
/* */
-/* 06-02-2021 William E. Lamie Initial Version 6.1.7 */
+/* 06-02-2021 William E. Lamie Initial Version 6.1.7 */
+/* 10-31-2022 Scott Larson Remove double parenthesis, */
+/* resulting in version 6.2.0 */
/* */
/**************************************************************************/
INT sem_unlink(const CHAR * name)
@@ -102,7 +104,7 @@ ULONG len;
sem->unlink_flag =TX_TRUE;
/* Check for the count. */
- if ((sem->count == 0) )
+ if(sem->count == 0)
{
posix_sem_reset(sem );
sem = NULL;