Skip to content

Commit

Permalink
removed useless change of w_pstring
Browse files Browse the repository at this point in the history
  • Loading branch information
chgnrdv authored Oct 14, 2023
1 parent 92e115e commit 63f6ffa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Python/marshal.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,11 @@ w_long(long x, WFILE *p)
# define W_SIZE w_long
#endif

static int
static void
w_pstring(const void *s, Py_ssize_t n, WFILE *p)
{
W_SIZE(n, p);
w_string(s, n, p);
return 0;
}

static void
Expand Down

0 comments on commit 63f6ffa

Please sign in to comment.