summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-14 03:02:34 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-14 03:02:34 (GMT)
commit2518b25578b5aa8ffdef1666cd0d3c0786f83fb2 (patch)
treefd2a5992c02b519b3d73a0d9d15d70e3917c1b2c
parent42da874cddc20f8d0e663163defe492570a88e2c (diff)
downloadcpython-2518b25578b5aa8ffdef1666cd0d3c0786f83fb2.zip
cpython-2518b25578b5aa8ffdef1666cd0d3c0786f83fb2.tar.gz
cpython-2518b25578b5aa8ffdef1666cd0d3c0786f83fb2.tar.bz2
Fixed a warning in _codecs_iso2022.c and some non C89 conform // comments.
-rw-r--r--Modules/_ctypes/libffi/src/x86/ffi.c2
-rw-r--r--Modules/bsddb.h4
-rw-r--r--Modules/cjkcodecs/_codecs_iso2022.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_ctypes/libffi/src/x86/ffi.c b/Modules/_ctypes/libffi/src/x86/ffi.c
index cc63b6b..4d92029 100644
--- a/Modules/_ctypes/libffi/src/x86/ffi.c
+++ b/Modules/_ctypes/libffi/src/x86/ffi.c
@@ -256,7 +256,7 @@ ffi_closure_SYSV_inner (closure, respp, args)
void **respp;
void *args;
{
- // our various things...
+ /* our various things... */
ffi_cif *cif;
void **arg_area;
diff --git a/Modules/bsddb.h b/Modules/bsddb.h
index 490da59..a209553 100644
--- a/Modules/bsddb.h
+++ b/Modules/bsddb.h
@@ -232,7 +232,7 @@ typedef struct {
#define DBSequenceObject_Check(v) ((v)->ob_type == bsddb_api->dbsequence_type)
#endif
-#endif // COMPILING_BSDDB_C
+#endif /* COMPILING_BSDDB_C */
-#endif // _BSDDB_H_
+#endif /* _BSDDB_H_ */
diff --git a/Modules/cjkcodecs/_codecs_iso2022.c b/Modules/cjkcodecs/_codecs_iso2022.c
index 55196a9..9ce7b75 100644
--- a/Modules/cjkcodecs/_codecs_iso2022.c
+++ b/Modules/cjkcodecs/_codecs_iso2022.c
@@ -203,7 +203,7 @@ ENCODER(iso2022)
} else
encoded = dsg->encoder(&c, &length);
#else
- encoded = dsg->encoder(*inbuf, &length);
+ encoded = dsg->encoder(&c, &length);
#endif
if (encoded != MAP_UNMAPPABLE) {
insize = length;