OpenAFS Master Repository branch, master, updated. BP--openafs-stable-1_6_x-690-g6d2636b
Gerrit Code Review
gerrit@openafs.org
Tue, 25 Jan 2011 01:46:51 -0800 (PST)
The following commit has been merged in the master branch:
commit 6d2636b886789f2ddc6374c6b7e58ccd28d518aa
Author: Rod Widdowson <rdw@steadingsoftware.com>
Date: Sun Jan 23 10:59:28 2011 +0000
Windows: read and write take void* buffers, open takes a const char*
nt_read and nt_write were defined to take a char* buffer which was
then cast to a void *. Meantime every call of OS_READ and
OS_WRITE were casting to a char*.
Equally every call of OS_OPEN was passing down a const char*,
causing warnings.
This checkin fixes this:
nt_read : char* to void*
nt_write: char* to const void*
nt_open char* to const char*
Change-Id: Id4e138b9d347e1a9f35241e162a105d5f462b168
Reviewed-on: http://gerrit.openafs.org/3744
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Jeffrey Altman <jaltman@openafs.org>
src/vol/namei_ops.c | 4 ++--
src/vol/ntops.c | 10 +++++-----
src/vol/ntops.h | 6 +++---
3 files changed, 10 insertions(+), 10 deletions(-)
--
OpenAFS Master Repository