check_dir: fix typo in warning message

This commit is contained in:
Stefan Seyfried
2012-06-24 15:30:49 +02:00
parent bcec8033b0
commit d7d00c7ddf

View File

@@ -1062,7 +1062,8 @@ int check_dir(const char * newdir)
case 0x858458f6: /*ramfs*/ case 0x858458f6: /*ramfs*/
return 0;//ok return 0;//ok
default: 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; break;
} }
} }