diff options
author | Éric Araujo <merwok@netwok.org> | 2011-07-26 15:23:57 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-07-26 15:23:57 (GMT) |
commit | 6c0ba447bd171094f27b7ae72df2dbbd8c60a6c1 (patch) | |
tree | bc466fc0b45c5ea7790185e8291d6538eebb2694 /Python | |
parent | 72db3459e4d949f5ac8df6778b0a0bef8da2e05f (diff) | |
download | cpython-6c0ba447bd171094f27b7ae72df2dbbd8c60a6c1.zip cpython-6c0ba447bd171094f27b7ae72df2dbbd8c60a6c1.tar.gz cpython-6c0ba447bd171094f27b7ae72df2dbbd8c60a6c1.tar.bz2 |
Fix style in code added by edba722f3b02
Diffstat (limited to 'Python')
-rw-r--r-- | Python/marshal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/marshal.c b/Python/marshal.c index 76d5690..094f732 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -57,7 +57,7 @@ typedef struct { int error; /* see WFERR_* values */ int depth; /* If fp == NULL, the following are valid: */ - PyObject * readable; /* Stream-like object being read from */ + PyObject *readable; /* Stream-like object being read from */ PyObject *str; char *ptr; char *end; @@ -470,7 +470,7 @@ typedef WFILE RFILE; /* Same struct with different invariants */ static int r_string(char *s, int n, RFILE *p) { - char * ptr; + char *ptr; int read, left; if (!p->readable) { @@ -569,7 +569,7 @@ r_long(RFILE *p) static PyObject * r_long64(RFILE *p) { - PyObject * result = NULL; + PyObject *result = NULL; long lo4 = r_long(p); long hi4 = r_long(p); |