зеркало из https://github.com/github/ruby.git
etc.c: fix typo
* ext/etc/etc.c (etc_uname): fix typo, `len` with `plen`, and an extra semicolon. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
e3653bfe6f
Коммит
172f3673ad
|
@ -705,7 +705,7 @@ etc_uname(VALUE obj)
|
|||
# if defined _MSC_VER && _MSC_VER < 1300
|
||||
# define GET_COMPUTER_NAME(ptr, plen) GetComputerNameW(ptr, plen)
|
||||
# else
|
||||
# define GET_COMPUTER_NAME(ptr, plen) GetComputerNameExW(ComputerNameDnsFullyQualified, ptr, len);
|
||||
# define GET_COMPUTER_NAME(ptr, plen) GetComputerNameExW(ComputerNameDnsFullyQualified, ptr, plen)
|
||||
# endif
|
||||
GET_COMPUTER_NAME(NULL, &len);
|
||||
buf = ALLOCV_N(WCHAR, vbuf, len);
|
||||
|
|
Загрузка…
Ссылка в новой задаче