summaryrefslogtreecommitdiff
path: root/src/FSlibInt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/FSlibInt.c')
-rw-r--r--src/FSlibInt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FSlibInt.c b/src/FSlibInt.c
index 5a33b64..eea9840 100644
--- a/src/FSlibInt.c
+++ b/src/FSlibInt.c
@@ -536,7 +536,7 @@ _FSReadPad(
void
_FSSend(
register FSServer *svr,
- char *data,
+ const char *data,
register long size)
{
struct iovec iov[3];
@@ -591,7 +591,7 @@ _FSSend(
}
InsertIOV(svr->buffer, svrbufsize)
- InsertIOV(data, size)
+ InsertIOV((char *)data, size)
InsertIOV(pad, padsize)
ESET(0);