Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6c0ba44

Browse files
committed
Fix style in code added by edba722f3b02
1 parent 72db345 commit 6c0ba44

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Python/marshal.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ typedef struct {
5757
int error; /* see WFERR_* values */
5858
int depth;
5959
/* If fp == NULL, the following are valid: */
60-
PyObject * readable; /* Stream-like object being read from */
60+
PyObject *readable; /* Stream-like object being read from */
6161
PyObject *str;
6262
char *ptr;
6363
char *end;
@@ -470,7 +470,7 @@ typedef WFILE RFILE; /* Same struct with different invariants */
470470
static int
471471
r_string(char *s, int n, RFILE *p)
472472
{
473-
char * ptr;
473+
char *ptr;
474474
int read, left;
475475

476476
if (!p->readable) {
@@ -569,7 +569,7 @@ r_long(RFILE *p)
569569
static PyObject *
570570
r_long64(RFILE *p)
571571
{
572-
PyObject * result = NULL;
572+
PyObject *result = NULL;
573573
long lo4 = r_long(p);
574574
long hi4 = r_long(p);
575575

0 commit comments

Comments
 (0)