summaryrefslogtreecommitdiff
path: root/src/saveload
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2011-01-21 01:38:30 +0000
committersmatz <smatz@openttd.org>2011-01-21 01:38:30 +0000
commit656caf16dbf2010fc742b1dfabcf317f2ab19748 (patch)
tree0c86433a178c72303ca22b19079d71c656ee7e75 /src/saveload
parent1ac51128f5524023c124873b76c3c7d17830e8a7 (diff)
downloadopenttd-656caf16dbf2010fc742b1dfabcf317f2ab19748.tar.xz
(svn r21875) -Codechange: indentation of some comments was wrong
Diffstat (limited to 'src/saveload')
-rw-r--r--src/saveload/saveload.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/saveload/saveload.cpp b/src/saveload/saveload.cpp
index 4d68133bc..ec0bec7b1 100644
--- a/src/saveload/saveload.cpp
+++ b/src/saveload/saveload.cpp
@@ -2026,12 +2026,12 @@ struct ZlibSaveFilter : SaveFilter {
this->z.avail_out = sizeof(buf);
/**
- * For the poor next soul who sees many valgrind warnings of the
- * "Conditional jump or move depends on uninitialised value(s)" kind:
- * According to the author of zlib it is not a bug and it won't be fixed.
- * http://groups.google.com/group/comp.compression/browse_thread/thread/b154b8def8c2a3ef/cdf9b8729ce17ee2
- * [Mark Adler, Feb 24 2004, 'zlib-1.2.1 valgrind warnings' in the newgroup comp.compression]
- */
+ * For the poor next soul who sees many valgrind warnings of the
+ * "Conditional jump or move depends on uninitialised value(s)" kind:
+ * According to the author of zlib it is not a bug and it won't be fixed.
+ * http://groups.google.com/group/comp.compression/browse_thread/thread/b154b8def8c2a3ef/cdf9b8729ce17ee2
+ * [Mark Adler, Feb 24 2004, 'zlib-1.2.1 valgrind warnings' in the newgroup comp.compression]
+ */
int r = deflate(&this->z, mode);
/* bytes were emitted? */