From 18c4a9d2f119842045cddeccfd78ad74fcf87064 Mon Sep 17 00:00:00 2001 From: stan Date: Fri, 2 Dec 2005 10:18:59 +0000 Subject: [PATCH] Fixed typo. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1651 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_config.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zm_config.cpp b/src/zm_config.cpp index 100ac2eec..a90bf34c8 100644 --- a/src/zm_config.cpp +++ b/src/zm_config.cpp @@ -174,7 +174,7 @@ int ConfigItem::IntegerValue() const if ( cfg_type != CFG_INTEGER ) { - Error(( "Attempt to fetch integer value for %s, actual type is %s". Try running zmconfig.pl to reload config., name, type )); + Error(( "Attempt to fetch integer value for %s, actual type is %s. Try running zmconfig.pl to reload config.", name, type )); exit( -1 ); } @@ -188,7 +188,7 @@ double ConfigItem::DecimalValue() const if ( cfg_type != CFG_DECIMAL ) { - Error(( "Attempt to fetch decimal value for %s, actual type is %s". Try running zmconfig.pl to reload config., name, type )); + Error(( "Attempt to fetch decimal value for %s, actual type is %s. Try running zmconfig.pl to reload config.", name, type )); exit( -1 ); } @@ -202,7 +202,7 @@ const char *ConfigItem::StringValue() const if ( cfg_type != CFG_STRING ) { - Error(( "Attempt to fetch string value for %s, actual type is %s". Try running zmconfig.pl to reload config., name, type )); + Error(( "Attempt to fetch string value for %s, actual type is %s. Try running zmconfig.pl to reload config.", name, type )); exit( -1 ); }