summaryrefslogtreecommitdiffstats
path: root/src/compression.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-02-19 22:06:09 (EST)
committer P. J. McDermott <pjm@nac.net>2013-02-19 22:06:09 (EST)
commit22357decdbdd612a00bcfa9291b767e6f068fd9f (patch)
tree9f561763e76da4fb57679de89731a04f25c84c58 /src/compression.h
parent8935a3d7639615d142510cde24b3ef7f1e71eab5 (diff)
downloadoverworld-rpg-22357decdbdd612a00bcfa9291b767e6f068fd9f.zip
overworld-rpg-22357decdbdd612a00bcfa9291b767e6f068fd9f.tar.gz
overworld-rpg-22357decdbdd612a00bcfa9291b767e6f068fd9f.tar.bz2
Enable and fix a bunch of GCC warnings.
Diffstat (limited to 'src/compression.h')
-rw-r--r--src/compression.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compression.h b/src/compression.h
index 387d634..ffa8dc0 100644
--- a/src/compression.h
+++ b/src/compression.h
@@ -1,6 +1,6 @@
#ifndef COMPRESSION_H
#define COMPRESSION_H
-void decompress(const char *src, size_t src_len, char *dest, size_t dest_len);
+void decompress(char *src, size_t src_len, char *dest, size_t dest_len);
#endif