diff m_config.c @ 25962:afa125da85cf

typo fix: inited --> initialized
author diego
date Thu, 14 Feb 2008 14:23:55 +0000
parents 4344e84f7a9f
children 6e53dfe38594
line wrap: on
line diff
--- a/m_config.c	Wed Feb 13 21:36:27 2008 +0000
+++ b/m_config.c	Thu Feb 14 14:23:55 2008 +0000
@@ -37,7 +37,7 @@
 m_config_t*
 m_config_new(void) {
   m_config_t* config;
-  static int inited = 0;
+  static int initialized = 0;
   static m_option_type_t profile_opt_type;
   static m_option_t ref_opts[] = {
     { "profile", NULL, &profile_opt_type, CONF_NOSAVE, 0, 0, NULL },
@@ -49,8 +49,8 @@
 
   config = calloc(1,sizeof(m_config_t));
   config->lvl = 1; // 0 Is the defaults
-  if(!inited) {
-    inited = 1;
+  if(!initialized) {
+    initialized = 1;
     profile_opt_type = m_option_type_string_list;
     profile_opt_type.parse = parse_profile;
     profile_opt_type.set = set_profile;