Commit 6c0ba447 authored by Éric Araujo's avatar Éric Araujo

Fix style in code added by edba722f3b02

parent 72db3459
...@@ -57,7 +57,7 @@ typedef struct { ...@@ -57,7 +57,7 @@ typedef struct {
int error; /* see WFERR_* values */ int error; /* see WFERR_* values */
int depth; int depth;
/* If fp == NULL, the following are valid: */ /* 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; PyObject *str;
char *ptr; char *ptr;
char *end; char *end;
...@@ -470,7 +470,7 @@ typedef WFILE RFILE; /* Same struct with different invariants */ ...@@ -470,7 +470,7 @@ typedef WFILE RFILE; /* Same struct with different invariants */
static int static int
r_string(char *s, int n, RFILE *p) r_string(char *s, int n, RFILE *p)
{ {
char * ptr; char *ptr;
int read, left; int read, left;
if (!p->readable) { if (!p->readable) {
...@@ -569,7 +569,7 @@ r_long(RFILE *p) ...@@ -569,7 +569,7 @@ r_long(RFILE *p)
static PyObject * static PyObject *
r_long64(RFILE *p) r_long64(RFILE *p)
{ {
PyObject * result = NULL; PyObject *result = NULL;
long lo4 = r_long(p); long lo4 = r_long(p);
long hi4 = r_long(p); long hi4 = r_long(p);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment