Fixed typo.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1651 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
0ef4e0f134
commit
18c4a9d2f1
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue