X-Git-Url: https://git.openafs.org/?p=openafs.git;a=blobdiff_plain;f=src%2FWINNT%2Fafsd%2Fcm_buf.c;h=4f5f22728c06d7e00901f755147fcec369320a79;hp=9b790e51fb444c3f1f0e0cf5f5ebcedac327b8ce;hb=1e44ef074aae0fd718f15ba8ff8b66bca1586c2f;hpb=7d6baa2df1ef0244b0a27082948be794ef36a8e4 diff --git a/src/WINNT/afsd/cm_buf.c b/src/WINNT/afsd/cm_buf.c index 9b790e5..4f5f227 100644 --- a/src/WINNT/afsd/cm_buf.c +++ b/src/WINNT/afsd/cm_buf.c @@ -1560,7 +1560,7 @@ int cm_DumpBufHashTable(FILE *outputFile, char *cookie, int lock) if (lock) lock_ObtainRead(&buf_globalLock); - StringCbPrintfA(output, sizeof(output), "%s - dumping buf_HashTable - buf_hashSize=%d\n", + StringCbPrintfA(output, sizeof(output), "%s - dumping buf_HashTable - buf_hashSize=%d\r\n", cookie, cm_data.buf_hashSize); WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL); @@ -1570,7 +1570,7 @@ int cm_DumpBufHashTable(FILE *outputFile, char *cookie, int lock) { if (bp->refCount) { - StringCbPrintfA(output, sizeof(output), "vnode=%d, unique=%d), size=%d refCount=%d\n", + StringCbPrintfA(output, sizeof(output), "vnode=%d, unique=%d), size=%d refCount=%d\r\n", cookie, (void *)bp, i, bp->fid.cell, bp->fid.volume, bp->fid.vnode, bp->fid.unique, bp->size, bp->refCount); WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL); @@ -1578,7 +1578,7 @@ int cm_DumpBufHashTable(FILE *outputFile, char *cookie, int lock) } } - StringCbPrintfA(output, sizeof(output), "%s - Done dumping buf_HashTable.\n", cookie); + StringCbPrintfA(output, sizeof(output), "%s - Done dumping buf_HashTable.\r\n", cookie); WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL); if (lock)