Skip to content

Commit

Permalink
Add missing colon
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed May 8, 2015
1 parent 66f6e5b commit 88d438c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GZip.jl
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ skip(s::GZipStream, n::Integer) =
error("skip (gzseek) failed")) # Mimick behavior of skip(s::IOStream, n)

position(s::GZipStream, of_raw::Bool=false) = of_raw ?
ccall((_gzoffset, _zlib), ZFileOffset, (Ptr{Void},), s.gz_file)
ccall((_gzoffset, _zlib), ZFileOffset, (Ptr{Void},), s.gz_file) :
ccall((_gztell, _zlib), ZFileOffset, (Ptr{Void},), s.gz_file)

eof(s::GZipStream) = @compat Bool(ccall((:gzeof, _zlib), Int32, (Ptr{Void},), s.gz_file))
Expand Down

0 comments on commit 88d438c

Please sign in to comment.