aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/iso8859-1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/iso8859-1.cxx')
-rw-r--r--libxsde/xsde/cxx/iso8859-1.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/libxsde/xsde/cxx/iso8859-1.cxx b/libxsde/xsde/cxx/iso8859-1.cxx
index b52a284..9e01f66 100644
--- a/libxsde/xsde/cxx/iso8859-1.cxx
+++ b/libxsde/xsde/cxx/iso8859-1.cxx
@@ -16,7 +16,7 @@ namespace xsde
{
for (; *s != 0; ++s)
{
- unsigned char c (*s);
+ unsigned char c = *s;
if (c < 0x80)
{
@@ -73,7 +73,7 @@ namespace xsde
for (; s != end; ++s)
{
- unsigned char c (*s);
+ unsigned char c = *s;
if (c < 0x80)
{
@@ -128,7 +128,7 @@ namespace xsde
{
for (; *s != 0; ++s)
{
- unsigned char c (*s);
+ unsigned char c = *s;
if (c < 0x80)
*r++ = c;
@@ -151,7 +151,7 @@ namespace xsde
for (; s != end; ++s)
{
- unsigned char c (*s);
+ unsigned char c = *s;
if (c < 0x80)
*r++ = c;