summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/libcsupport/src/pwdgrp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/pwdgrp.c b/cpukit/libcsupport/src/pwdgrp.c
index a97d397982..f4a10f7f46 100644
--- a/cpukit/libcsupport/src/pwdgrp.c
+++ b/cpukit/libcsupport/src/pwdgrp.c
@@ -36,6 +36,7 @@
#include <stdint.h>
#include <rtems/seterr.h>
+#include <rtems/score/assert.h>
#include "pwdgrp.h"
@@ -62,10 +63,13 @@ static void init_file(const char *name, const char *content)
*/
static void pwdgrp_init(void)
{
+ int sc;
+
/*
* Do the best to create this directory.
*/
- mkdir("/etc", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
+ sc = mkdir("/etc", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
+ _Assert_Unused_variable_equals(sc, 0);
/*
* Initialize /etc/passwd