fputs instead of fprintf

This commit is contained in:
albert
2005-10-30 23:45:47 +00:00
parent 3fca0261e0
commit 29cbc63561
4 changed files with 8 additions and 8 deletions

View File

@ -395,7 +395,7 @@ static void diskformat(void){
free(partitions);
}
}else{
fprintf(stderr, "Your kernel doesn't support diskstat (2.5.70 or above required)");
fprintf(stderr, "Your kernel doesn't support diskstat (2.5.70 or above required)\n");
exit(0);
}
}
@ -416,7 +416,7 @@ static void slabformat (void){
fSlab=fopen("/proc/slabinfo", "rb");
if(!fSlab){
fprintf(stderr, "Your kernel doesn't support slabinfo");
fprintf(stderr, "Your kernel doesn't support slabinfo.\n");
return;
}