diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-04-10 20:45:46 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-04-10 20:45:46 +0100 |
commit | f8c0a35cdf7181196ceda8e10ab38757c80b3e80 (patch) | |
tree | f4305bb21e863bc8f84fbdad12f67c9a57d482d3 /src/OS/os.c-BSDI | |
parent | c2f669a4994192344613569e198c7b503d46d45e (diff) |
tidying: char signedness
Diffstat (limited to 'src/OS/os.c-BSDI')
-rw-r--r-- | src/OS/os.c-BSDI | 4 |
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; } |