summaryrefslogtreecommitdiff
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
authorvrajivk <3413293+vrajivk@users.noreply.github.com>2019-08-26 21:13:12 -0700
committerNed Deily <nad@python.org>2019-08-27 00:13:12 -0400
commit8bf5fef8737fdd12724b9340d76a4ed391c4ad8a (patch)
treefcabf93bda1a331df4ac77b2a490b565a67f0e6e /Modules/timemodule.c
parentfae0ed5099de594a9204071d555cb8b76368cbf4 (diff)
downloadcpython-git-8bf5fef8737fdd12724b9340d76a4ed391c4ad8a.tar.gz
bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538)
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index bdc93a2b7e..5e0010c8a8 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -1208,7 +1208,7 @@ _PyTime_GetProcessTimeWithInfo(_PyTime_t *tp, _Py_clock_info_t *info)
return -1;
}
- _PyTime_t total = utime + utime;
+ _PyTime_t total = utime + stime;
*tp = total;
return 0;
}