Changes by: uvman
Update of /cvs/linux-ntfs/ntfsprogs/ntfsprogs
In directory delta357:/tmp/cvs-serv347/ntfsprogs
Modified Files:
utils.c
Log Message:
trace output updates. (Szaka, Yuval)
Index: utils.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs/utils.c,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -p -r1.65 -r1.66
--- utils.c 13 Aug 2006 16:06:57 -0000 1.65
+++ utils.c 26 Oct 2006 20:45:28 -0000 1.66
@@ -668,15 +668,15 @@ int utils_mftrec_in_use(ntfs_volume *vol
{
static u8 buffer[512];
static s64 bmpmref = -sizeof(buffer) - 1; /* Which bit of $BITMAP is in the buffer */
-
int byte, bit;
+ ntfs_log_trace("Entering.\n");
+
if (!vol) {
errno = EINVAL;
return -1;
}
- ntfs_log_trace("entering\n");
/* Does mref lie in the section of $Bitmap we already have cached? */
if (((s64)MREF(mref) < bmpmref) || ((s64)MREF(mref) >= (bmpmref +
(sizeof(buffer) << 3)))) {
|