summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-06 05:36:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-06 05:36:23 +0000
commit59baeaf10f572f1017d212cb0234c5d96e8a79a4 (patch)
tree66693b3b9937c010b7493ff9e091357be57d38cf
parentf245f0c664819eaa96df7a29319d5a6a118d9fb8 (diff)
win32.c: clock_getres
* win32/win32.c (clock_getres): remove unused variable. [ruby-dev:47699] [Bug #8869] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--win32/win32.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index b888e9c9e6..d673636e57 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4359,7 +4359,6 @@ clock_getres(clockid_t clock_id, struct timespec *sp)
case CLOCK_MONOTONIC:
{
LARGE_INTEGER freq;
- LARGE_INTEGER count;
if (!QueryPerformanceFrequency(&freq)) {
errno = map_errno(GetLastError());
return -1;