Skip to content

Commit

Permalink
unsigned ints in buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Aug 1, 2008
1 parent 05d5362 commit d35bf2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buffer.rb
Expand Up @@ -51,7 +51,7 @@ def read *types
when :short
_read(2, 'n')
when :int
_read(4, 'i')
_read(4, 'I')
when :double
_read(8, 'd')
when :long
Expand Down Expand Up @@ -133,7 +133,7 @@ def write type, data
when :short
_write(data, 'n')
when :int
_write(data, 'i')
_write(data, 'I')
when :double
_write(data, 'd')
when :long
Expand Down

0 comments on commit d35bf2c

Please sign in to comment.