mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
* pack.c (pack_unpack): upper half of hexdigits has never been used.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@18288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8310a6a701
commit
ad5a5f940d
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jul 31 12:23:53 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* pack.c (pack_unpack): upper half of hexdigits has never been used.
|
||||
|
||||
Thu Jul 31 11:31:29 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/syck/syck.h (ASSERT): fix typo at r18176.
|
||||
|
|
2
pack.c
2
pack.c
|
@ -1304,7 +1304,7 @@ static VALUE
|
|||
pack_unpack(str, fmt)
|
||||
VALUE str, fmt;
|
||||
{
|
||||
static const char hexdigits[] = "0123456789abcdef0123456789ABCDEFx";
|
||||
static const char hexdigits[] = "0123456789abcdef";
|
||||
char *s, *send;
|
||||
char *p, *pend;
|
||||
VALUE ary;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue