Skip to content

Commit

Permalink
Merge pull request #9 from tanmaykm/tanmaykm
Browse files Browse the repository at this point in the history
updates for Julia v0.6
  • Loading branch information
tanmaykm committed May 29, 2017
2 parents 5762fe5 + 7884564 commit cdb7d5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ os:
julia:
- 0.4
- 0.5
- 0.6
- nightly
services:
- memcached
Expand Down
2 changes: 1 addition & 1 deletion src/client.jl
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function mc_recv(mc::MemcacheClient)
split(s, ' ', limit=2)
end

mc_recv(mc::MemcacheClient, len::Integer) = mc_recv(mc, Array(UInt8, len))
mc_recv(mc::MemcacheClient, len::Integer) = mc_recv(mc, Array{UInt8,1}(len))

function mc_recv(mc::MemcacheClient, data::Array{UInt8,1})
read!(mc.sock, data)
Expand Down

0 comments on commit cdb7d5a

Please sign in to comment.