summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-05-24 15:24:38 (GMT)
committerGuido van Rossum <guido@python.org>2002-05-24 15:24:38 (GMT)
commita0a6c5a042818461fa199c8a3daefb7fd00ffe1b (patch)
treea3a079550df509015b93b3da11ef13ea8ca4c635 /Include
parentef4d4bdc3c99d3120a401b7af6e06610716d2e47 (diff)
downloadcpython-a0a6c5a042818461fa199c8a3daefb7fd00ffe1b.zip
cpython-a0a6c5a042818461fa199c8a3daefb7fd00ffe1b.tar.gz
cpython-a0a6c5a042818461fa199c8a3daefb7fd00ffe1b.tar.bz2
Add missing \ to macro definition only used when universal newlines
are disabled.
Diffstat (limited to 'Include')
-rw-r--r--Include/fileobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h
index 6c34223..dfc001c 100644
--- a/Include/fileobject.h
+++ b/Include/fileobject.h
@@ -55,7 +55,7 @@ size_t Py_UniversalNewlineFread(char *, size_t, FILE *, PyObject *);
#else
#define PY_STDIOTEXTMODE ""
#define Py_UniversalNewlineFgets(buf, len, fp, obj) fgets((buf), (len), (fp))
-#define Py_UniversalNewlineFread(buf, len, fp, obj)
+#define Py_UniversalNewlineFread(buf, len, fp, obj) \
fread((buf), 1, (len), (fp))
#endif /* WITH_UNIVERSAL_NEWLINES */
#ifdef __cplusplus