Skip to content

Commit d356084

Browse files
Fix typo
1 parent ff3ab57 commit d356084

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/signalmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ double_from_timeval(struct timeval *tv)
194194
static PyObject *
195195
itimer_retval(struct itimerval *iv)
196196
{
197-
PyObject *value = PyFloat_FromDouble(double_from_timeval(&iv->it_value))
197+
PyObject *value = PyFloat_FromDouble(double_from_timeval(&iv->it_value));
198198
if (value == NULL) {
199199
return NULL;
200200
}

0 commit comments

Comments
 (0)