From 60880b2edd1039b15aff582def939e2bbcb27d66 Mon Sep 17 00:00:00 2001 From: stan Date: Wed, 13 Feb 2008 22:44:19 +0000 Subject: [PATCH] Bug 455 - Corrected duplicate parameter name in function declaration. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2305 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_image.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_image.h b/src/zm_image.h index 377e9ba41..50edb6577 100644 --- a/src/zm_image.h +++ b/src/zm_image.h @@ -145,7 +145,7 @@ public: bool Unzip( const Bytef *inbuffer, unsigned long inbuffer_size ); bool Zip( Bytef *outbuffer, unsigned long *outbuffer_size, int compression_level=Z_BEST_SPEED ) const; - bool Crop( int lo_x, int lo_y, int hi_y, int hi_y ); + bool Crop( int lo_x, int lo_y, int hi_x, int hi_y ); bool Crop( const Box &limits ); void Overlay( const Image &image );