summaryrefslogtreecommitdiff
path: root/src/OS
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2016-04-10 20:45:46 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2016-04-10 20:45:46 +0100
commitf8c0a35cdf7181196ceda8e10ab38757c80b3e80 (patch)
treef4305bb21e863bc8f84fbdad12f67c9a57d482d3 /src/OS
parentc2f669a4994192344613569e198c7b503d46d45e (diff)
tidying: char signedness
Diffstat (limited to 'src/OS')
-rw-r--r--src/OS/os.c-BSDI4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OS/os.c-BSDI b/src/OS/os.c-BSDI
index 03a7a1cef..3cef2ac6d 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 uschar * name)
+os_unsetenv(const unsigned char * name)
{
-unsetenv(CS name);
+unsetenv((char *)name);
return 0;
}