summaryrefslogtreecommitdiff
path: root/src/pyfstream.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-28 04:54:54 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-28 04:54:54 -0400
commit38122c22241cb8fe64f0d17cd3b084418f49edaa (patch)
tree9383f2082602f2d71dde5328fa8bcf3f6609a5b7 /src/pyfstream.h
parentfb129fa7a1b293d3a04513aee3ca4a489f094754 (diff)
downloadledger-38122c22241cb8fe64f0d17cd3b084418f49edaa.tar.gz
ledger-38122c22241cb8fe64f0d17cd3b084418f49edaa.tar.bz2
ledger-38122c22241cb8fe64f0d17cd3b084418f49edaa.zip
Corrected warnings g++-4.3.3 was complaining about
Diffstat (limited to 'src/pyfstream.h')
-rw-r--r--src/pyfstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyfstream.h b/src/pyfstream.h
index 2b21b45e..5e39d38d 100644
--- a/src/pyfstream.h
+++ b/src/pyfstream.h
@@ -56,7 +56,7 @@ protected:
virtual int_type overflow (int_type c) {
if (c != EOF) {
char z[2];
- z[0] = c;
+ z[0] = static_cast<char>(c);
z[1] = '\0';
if (PyFile_WriteString(z, reinterpret_cast<PyObject *>(fo)) < 0) {
return EOF;