From 5344c6b86c6145733b713114f60a714172376508 Mon Sep 17 00:00:00 2001 From: stan Date: Tue, 28 Dec 2004 15:45:23 +0000 Subject: [PATCH] Removed extraneous format field. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1166 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zmf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zmf.cpp b/src/zmf.cpp index ff23892ed..921aeeab9 100644 --- a/src/zmf.cpp +++ b/src/zmf.cpp @@ -293,7 +293,7 @@ int main( int argc, char *argv[] ) continue; } static char path[PATH_MAX] = ""; - snprintf( path, sizeof(path), frame_header.alarm_frame?anal_path:capt_path, "%s/%d/%ld/%03ld-%s.jpg", frame_header.event_id, frame_header.frame_id ); + snprintf( path, sizeof(path), frame_header.alarm_frame?anal_path:capt_path, frame_header.event_id, frame_header.frame_id ); Debug( 1, ( "Got image, writing to %s", path )); FILE *fd = 0;