Update of /cvsroot/mkdump/utils/mkd_conv
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3963
Modified Files:
mkd_conv.c
Log Message:
Added LF in fprintf().
Index: mkd_conv.c
===================================================================
RCS file: /cvsroot/mkdump/utils/mkd_conv/mkd_conv.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** mkd_conv.c 4 Mar 2006 23:59:40 -0000 1.2
--- mkd_conv.c 5 Mar 2006 01:12:50 -0000 1.3
***************
*** 240,244 ****
if ((result = posix_memalign((void *)&(dcache.buf), 512, dcache.buf_sz)) != 0) {
/* posix_memalign() is not set errno. */
! fprintf(stderr, "posix_memalign(for cache of dump data) : %d", result);
goto L_close;
}
--- 240,244 ----
if ((result = posix_memalign((void *)&(dcache.buf), 512, dcache.buf_sz)) != 0) {
/* posix_memalign() is not set errno. */
! fprintf(stderr, "posix_memalign(for cache of dump data) : %d\n", result);
goto L_close;
}
***************
*** 480,484 ****
if ((result = posix_memalign((void *)&(dcache->dvp), 512, dcache->p_sz * 2)) != 0) {
/* posix_memalign() is not set errno. */
! fprintf(stderr, "posix_memalign(for cache of dump headers) : %d", result);
return -1;
}
--- 480,484 ----
if ((result = posix_memalign((void *)&(dcache->dvp), 512, dcache->p_sz * 2)) != 0) {
/* posix_memalign() is not set errno. */
! fprintf(stderr, "posix_memalign(for cache of dump headers) : %d\n", result);
return -1;
}
***************
*** 487,491 ****
perror("read headers(in main)");
} else {
! fprintf(stderr, "header read size error(in main) %d : %d", dcache->p_sz * 2, result);
}
return -1;
--- 487,491 ----
perror("read headers(in main)");
} else {
! fprintf(stderr, "header read size error(in main) %d : %d\n", dcache->p_sz * 2, result);
}
return -1;
***************
*** 505,509 ****
512, dcache->p_sz)) != 0) {
/* posix_memalign() is not set errno. */
! fprintf(stderr, "posix_memalign(for cache of dump tailer) : %d", result);
return -1;
}
--- 505,509 ----
512, dcache->p_sz)) != 0) {
/* posix_memalign() is not set errno. */
! fprintf(stderr, "posix_memalign(for cache of dump tailer) : %d\n", result);
return -1;
}
***************
*** 512,516 ****
perror("read tailer(in main)");
} else {
! fprintf(stderr, "tailer read size error(in main) %d : %d", dcache->p_sz, result);
}
return -1;
--- 512,516 ----
perror("read tailer(in main)");
} else {
! fprintf(stderr, "tailer read size error(in main) %d : %d\n", dcache->p_sz, result);
}
return -1;
|