From 9dd22306e167345cd92eb44354e30b9bdd8afadb Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 24 Jun 2012 15:30:49 +0200 Subject: [PATCH] check_dir: fix typo in warning message Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/d7d00c7ddf8ed4cd174bb59e54b70908ea4f6844 Author: Stefan Seyfried Date: 2012-06-24 (Sun, 24 Jun 2012) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/system/setting_helpers.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/system/setting_helpers.cpp b/src/system/setting_helpers.cpp index 7f06634ce..712861e50 100644 --- a/src/system/setting_helpers.cpp +++ b/src/system/setting_helpers.cpp @@ -1062,7 +1062,8 @@ int check_dir(const char * newdir) case 0x858458f6: /*ramfs*/ return 0;//ok default: - fprintf( stderr,"%s Unknow File system type: %i\n",newdir ,s.f_type); + fprintf(stderr, "%s(%s): Unknown File system type: 0x%lx\n", + __func__, newdir, s.f_type); break; } }