Fixed typo.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1651 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2005-12-02 10:18:59 +00:00
parent 0ef4e0f134
commit 18c4a9d2f1
1 changed files with 3 additions and 3 deletions

View File

@ -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 );
}