summaryrefslogtreecommitdiff
path: root/src/OS
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2016-04-10 16:51:16 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2016-04-10 17:17:19 +0100
commit93a680e4c9c899d86ff3fde0933fb5367b34af50 (patch)
tree3356f53b09ffd891b43fbb647b932493f727755e /src/OS
parent9e716cdf98e2c9e771471249a6b75e7481a54b0b (diff)
tidying: char signedness
Diffstat (limited to 'src/OS')
-rw-r--r--src/OS/os.c-BSDI6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/OS/os.c-BSDI b/src/OS/os.c-BSDI
index 43e5bb147..03a7a1cef 100644
--- a/src/OS/os.c-BSDI
+++ b/src/OS/os.c-BSDI
@@ -12,8 +12,8 @@ src/os.c file. */
#define OS_UNSETENV
int
-os_unsetenv(const char *name)
+os_unsetenv(const uschar * name)
{
- unsetenv(name);
- return 0;
+unsetenv(CS name);
+return 0;
}