summaryrefslogtreecommitdiffstats
path: root/src/remote.ml
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2016-03-01 08:08:37 -0800
committerPaul Phillips <paulp@improving.org>2016-03-01 08:38:40 -0800
commit04886a8e9d25c2a28e63645c1cc3feff0625a747 (patch)
treeb4cdbee1d75719fb180df4ecf330f5a889760157 /src/remote.ml
parent644299b54ab3162b444d907b068accab08000a38 (diff)
downloadunison-04886a8e9d25c2a28e63645c1cc3feff0625a747.zip
unison-04886a8e9d25c2a28e63645c1cc3feff0625a747.tar.gz
unison-04886a8e9d25c2a28e63645c1cc3feff0625a747.tar.bz2
Eliminating deprecation warnings.
Diffstat (limited to 'src/remote.ml')
-rw-r--r--src/remote.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.ml b/src/remote.ml
index 37efd0d..1c70add 100644
--- a/src/remote.ml
+++ b/src/remote.ml
@@ -125,7 +125,7 @@ let bufferSize = 16384
buffer of this size *)
let makeBuffer ch =
- { channel = ch; buffer = String.create bufferSize;
+ { channel = ch; buffer = Bytes.create bufferSize;
length = 0; opened = true }
(****)