summaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'src/app')
-rw-r--r--src/app/deflatetest/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/deflatetest/main.cc b/src/app/deflatetest/main.cc
index 1fb394d..6829041 100644
--- a/src/app/deflatetest/main.cc
+++ b/src/app/deflatetest/main.cc
@@ -51,7 +51,7 @@ int main(void)
for (uint8_t i = 0; i < 5; i++) {
counter.start();
- int8_t ret = deflate_zlib((unsigned char*)deflate_input, sizeof(deflate_input), deflate_output, sizeof(deflate_output));
+ int16_t ret = deflate_zlib((unsigned char*)deflate_input, sizeof(deflate_input), deflate_output, sizeof(deflate_output));
counter.stop();
kout << "deflate returned " << ret << endl;
kout << "Output: " << (char*)deflate_output << endl;