Fixed bulk_frame_interval cast.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@918 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2004-03-04 15:16:44 +00:00
parent f257aee488
commit 81923acac7
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ protected:
initialised = true;
timestamp_on_capture = (bool)config.Item( ZM_TIMESTAMP_ON_CAPTURE );
bulk_frame_interval = (bool)config.Item( ZM_BULK_FRAME_INTERVAL );
bulk_frame_interval = (int)config.Item( ZM_BULK_FRAME_INTERVAL );
}
public:

View File

@ -153,7 +153,7 @@ protected:
create_analysis_images = (bool)config.Item( ZM_CREATE_ANALYSIS_IMAGES );
blend_alarmed_images = (bool)config.Item( ZM_BLEND_ALARMED_IMAGES );
timestamp_on_capture = (bool)config.Item( ZM_TIMESTAMP_ON_CAPTURE );
bulk_frame_interval = (bool)config.Item( ZM_BULK_FRAME_INTERVAL );
bulk_frame_interval = (int)config.Item( ZM_BULK_FRAME_INTERVAL );
}
public: