Skip to content

Commit

Permalink
gh-116102: Silence a Compiler Warning in _xxinterpqueues (gh-116230)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnowcurrently committed Mar 2, 2024
1 parent fb5e034 commit cad3745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_xxinterpqueuesmodule.c
Expand Up @@ -1417,7 +1417,7 @@ queuesmod_get(PyObject *self, PyObject *args, PyObject *kwds)
int64_t qid = qidarg.id;

PyObject *obj = NULL;
int fmt;
int fmt = 0;
int err = queue_get(&_globals.queues, qid, &obj, &fmt);
if (err == ERR_QUEUE_EMPTY && dflt != NULL) {
assert(obj == NULL);
Expand Down

0 comments on commit cad3745

Please sign in to comment.