Skip to content

Commit

Permalink
Fix C type errors in s390x
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimes committed Sep 11, 2024
1 parent efabcf3 commit 1f2b2e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mmh3/mmh3module.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ mmh3_mmh3_x64_128_digest(PyObject *self, PyObject *args, PyObject *keywds)
{
Py_buffer target_buf;
uint32_t seed = 0;
const uint64_t result[2];
uint64_t result[2];

static char *kwlist[] = {(char *)"key", (char *)"seed", NULL};

Expand Down Expand Up @@ -406,7 +406,7 @@ mmh3_mmh3_x86_128_digest(PyObject *self, PyObject *args, PyObject *keywds)
{
Py_buffer target_buf;
uint32_t seed = 0;
const uint64_t result[2];
uint64_t result[2];

static char *kwlist[] = {(char *)"key", (char *)"seed", NULL};

Expand Down

0 comments on commit 1f2b2e3

Please sign in to comment.