Skip to content
Snippets Groups Projects
Commit acbe5a07 authored by Lucas Russo's avatar Lucas Russo
Browse files

src/dev_io/dev_io.c: fix "dev_mngr" to "dev_io" in DEBUG messages

parent 2adc6798
No related merge requests found
...@@ -163,7 +163,7 @@ int main (int argc, char *argv[]) ...@@ -163,7 +163,7 @@ int main (int argc, char *argv[])
} }
else if (streq (argv[i], "-f")) { else if (streq (argv[i], "-f")) {
str_p = &cfg_file; str_p = &cfg_file;
DBE_DEBUG (DBG_DEV_MNGR | DBG_LVL_TRACE, "[dev_mngr] Will set cfg_file parameter\n"); DBE_DEBUG (DBG_DEV_MNGR | DBG_LVL_TRACE, "[dev_io] Will set cfg_file parameter\n");
} }
else if (streq (argv[i], "-h")) { else if (streq (argv[i], "-h")) {
print_help (argv[0]); print_help (argv[0]);
...@@ -389,7 +389,7 @@ int main (int argc, char *argv[]) ...@@ -389,7 +389,7 @@ int main (int argc, char *argv[])
* the corresponding keys */ * the corresponding keys */
hutils_err_e herr = hutils_get_hints (root_cfg, devio_hints); hutils_err_e herr = hutils_get_hints (root_cfg, devio_hints);
if (herr != HUTILS_SUCCESS) { if (herr != HUTILS_SUCCESS) {
DBE_DEBUG (DBG_DEV_MNGR | DBG_LVL_FATAL, "[dev_mngr] Could not get hints " DBE_DEBUG (DBG_DEV_MNGR | DBG_LVL_FATAL, "[dev_io] Could not get hints "
"from configuration file\n"); "from configuration file\n");
goto err_cfg_get_hints; goto err_cfg_get_hints;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment