check_dir: fix typo in warning message

Origin commit data
------------------
Branch: ni/coolstream
Commit: d7d00c7ddf
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-06-24 (Sun, 24 Jun 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2012-06-24 15:30:49 +02:00
parent f592e35e75
commit 9dd22306e1

View File

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