diff --git a/Data/List/Zipper.hs b/Data/List/Zipper.hs
--- a/Data/List/Zipper.hs
+++ b/Data/List/Zipper.hs
@@ -143,7 +143,7 @@
 foldlz' :: (b -> Zipper a -> b) -> b -> Zipper a -> b
 foldlz' f x z
         | endp z    = x
-        | otherwise = acc `seq` foldlz f acc (right z)
+        | otherwise = acc `seq` foldlz' f acc (right z)
         where acc = f x z
 
 -- | @extractz@, @extendz@, and @duplicatez@ can be used to
diff --git a/ListZipper.cabal b/ListZipper.cabal
--- a/ListZipper.cabal
+++ b/ListZipper.cabal
@@ -1,5 +1,5 @@
 name:            ListZipper
-version:         1.2.0.1
+version:         1.2.0.2
 copyright:       (c) 2008 Ryan Ingram
 license:         BSD3
 license-file:    LICENSE
