Fix name mismatch
authorMathis Rosenhauer <rosenhauer@dkrz.de>
Tue, 2 Oct 2012 20:03:03 +0000 (22:03 +0200)
committerThomas Jahns <jahns@dkrz.de>
Tue, 19 Feb 2013 10:33:00 +0000 (11:33 +0100)
src/decode.c
src/encode.c
src/sz_compat.c

index 36a88c7..7659c3e 100644 (file)
@@ -608,7 +608,7 @@ req_buffer:
     return AEC_OK;
 }
 
-int aec_buf_decode(struct aec_stream *strm)
+int aec_buffer_decode(struct aec_stream *strm)
 {
     int status;
 
index 9703a19..97fd2e8 100644 (file)
@@ -740,7 +740,7 @@ int aec_encode_end(struct aec_stream *strm)
     return AEC_OK;
 }
 
-int aec_buf_encode(struct aec_stream *strm)
+int aec_buffer_encode(struct aec_stream *strm)
 {
     int status;
 
index b4798c9..7e32ea2 100644 (file)
@@ -19,7 +19,7 @@ int SZ_BufftoBuffCompress(void *dest, size_t *destLen,
     strm.next_out = dest;
     strm.next_in = source;
 
-    status = aec_buf_encode(&strm);
+    status = aec_buffer_encode(&strm);
     if (status != AEC_OK)
         return status;
 
@@ -43,7 +43,7 @@ int SZ_BufftoBuffDecompress(void *dest, size_t *destLen,
     strm.next_out = dest;
     strm.next_in = source;
 
-    status = aec_buf_decode(&strm);
+    status = aec_buffer_decode(&strm);
     if (status != AEC_OK)
         return status;