summaryrefslogtreecommitdiff
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-07-26 18:25:14 +0200
committerÉric Araujo <merwok@netwok.org>2011-07-26 18:25:14 +0200
commit9e1af03fbb2a9fc1472ac866add02c99b0c88b16 (patch)
tree25efce5bd9633ba8cb685c9c64464a49da941853 /Python/marshal.c
parent76748b7033cdd52a95d78d85f2ec15244e5d0fd8 (diff)
parenta0e92a802815d55dafd303b39843ddd2b9784bdb (diff)
downloadcpython-git-9e1af03fbb2a9fc1472ac866add02c99b0c88b16.tar.gz
Branch merge.
I moved the NEWS entry for the reindent fix to the right release section.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index 76d5690438..094f732382 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);