diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-04-10 16:51:16 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-04-10 17:17:19 +0100 |
commit | 93a680e4c9c899d86ff3fde0933fb5367b34af50 (patch) | |
tree | 3356f53b09ffd891b43fbb647b932493f727755e /src/OS/os.c-BSDI | |
parent | 9e716cdf98e2c9e771471249a6b75e7481a54b0b (diff) |
tidying: char signedness
Diffstat (limited to 'src/OS/os.c-BSDI')
-rw-r--r-- | src/OS/os.c-BSDI | 6 |
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; } |