1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* missing/vsnprintf.c (BSD_vfprintf): should support 't' format

modifier to handle PRIdPTRDIFF.  thanks for the info from
  Kazuhiro NISHIYAMA.  [ruby-core:21807]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22024 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2009-02-04 01:16:14 +00:00
parent 12a5cf8287
commit 049d98c6ff
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
Wed Feb 4 10:12:05 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* missing/vsnprintf.c (BSD_vfprintf): should support 't' format
modifier to handle PRIdPTRDIFF. thanks for the info from
Kazuhiro NISHIYAMA. [ruby-core:21807]
Wed Feb 4 01:28:46 2009 Tanaka Akira <akr@fsij.org>
* ext/socket/extconf.rb: fix struct in_pktinfo and struct in6_pktinfo

View file

@ -713,6 +713,7 @@ reswitch: switch (ch) {
case 'h':
flags |= SHORTINT;
goto rflag;
case 't':
case 'l':
flags |= LONGINT;
goto rflag;