changeset 990:76f3961a044b

Fix one function name.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 28 Feb 2015 05:06:36 +0200
parents d66b0b6c8bf8
children acd91a57fe8c
files src/dmzlib.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/dmzlib.c	Sat Feb 28 04:24:13 2015 +0200
+++ b/src/dmzlib.c	Sat Feb 28 05:06:36 2015 +0200
@@ -420,7 +420,7 @@
 }
 
 
-static int dmZLibParseUncompresedBlock(DMZLibContext * ctx)
+static int dmZLibParseUncompressedBlock(DMZLibContext * ctx)
 {
     Uint8 header[4];
     int len, nlen, k, ret;
@@ -516,7 +516,7 @@
         type  = dmZReceive(ctx, 2);
         if (type == 0)
         {
-            if ((ret = dmZLibParseUncompresedBlock(ctx)) != DMERR_OK)
+            if ((ret = dmZLibParseUncompressedBlock(ctx)) != DMERR_OK)
                 return ret;
         }
         else