mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
process.c: suppress warning
* process.c (rb_clock_getres): move conditionally used variable to the proper block. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
34004844cd
commit
cec97f40f6
1 changed files with 2 additions and 4 deletions
|
@ -7149,7 +7149,6 @@ VALUE
|
|||
rb_clock_getres(int argc, VALUE *argv)
|
||||
{
|
||||
VALUE clk_id, unit;
|
||||
int ret;
|
||||
|
||||
struct timetick tt;
|
||||
timetick_int_t numerators[2];
|
||||
|
@ -7212,9 +7211,8 @@ rb_clock_getres(int argc, VALUE *argv)
|
|||
else {
|
||||
#if defined(HAVE_CLOCK_GETRES)
|
||||
struct timespec ts;
|
||||
clockid_t c;
|
||||
c = NUM2CLOCKID(clk_id);
|
||||
ret = clock_getres(c, &ts);
|
||||
clockid_t c = NUM2CLOCKID(clk_id);
|
||||
int ret = clock_getres(c, &ts);
|
||||
if (ret == -1)
|
||||
rb_sys_fail("clock_getres");
|
||||
tt.count = (int32_t)ts.tv_nsec;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue