From b7af404030bf2a809e36566ef646bea9b8a745c5 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Mon, 11 Feb 2013 13:43:20 -0800 Subject: [PATCH] xrdpapi: cast fix --- xrdpapi/xrdpapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xrdpapi/xrdpapi.c b/xrdpapi/xrdpapi.c index f35c8210..e3b63035 100644 --- a/xrdpapi/xrdpapi.c +++ b/xrdpapi/xrdpapi.c @@ -163,7 +163,7 @@ mysend(int sck, const void* adata, int bytes) int error; const char* data; - data = (char*)adata; + data = (const char*)adata; sent = 0; while (sent < bytes) {