diff --git a/reactos/lib/fslib/vfatxlib/fatx.c b/reactos/lib/fslib/vfatxlib/fatx.c index d4514b25491..2948fa22d78 100644 --- a/reactos/lib/fslib/vfatxlib/fatx.c +++ b/reactos/lib/fslib/vfatxlib/fatx.c @@ -90,7 +90,7 @@ FatxWriteBootSector (IN HANDLE FileHandle, return Status; } - UpdateProgress (Context, 1); + VfatxUpdateProgress (Context, 1); /* Free the new boot sector */ RtlFreeHeap(RtlGetProcessHeap(), 0, NewBootSector); @@ -148,7 +148,7 @@ Fatx16WriteFAT (IN HANDLE FileHandle, return(Status); } - UpdateProgress (Context, 1); + VfatxUpdateProgress (Context, 1); /* Zero the begin of the buffer */ memset(Buffer, 0, 4); @@ -180,7 +180,7 @@ Fatx16WriteFAT (IN HANDLE FileHandle, return(Status); } - UpdateProgress (Context, Sectors); + VfatxUpdateProgress (Context, Sectors); } /* Free the buffer */ @@ -241,7 +241,7 @@ Fatx32WriteFAT (IN HANDLE FileHandle, return(Status); } - UpdateProgress (Context, 1); + VfatxUpdateProgress (Context, 1); /* Zero the begin of the buffer */ memset(Buffer, 0, 8); @@ -274,7 +274,7 @@ Fatx32WriteFAT (IN HANDLE FileHandle, return(Status); } - UpdateProgress (Context, Sectors); + VfatxUpdateProgress (Context, Sectors); } /* Free the buffer */ diff --git a/reactos/lib/fslib/vfatxlib/vfatxlib.h b/reactos/lib/fslib/vfatxlib/vfatxlib.h index 95ca5e25696..3ac90c7c800 100644 --- a/reactos/lib/fslib/vfatxlib/vfatxlib.h +++ b/reactos/lib/fslib/vfatxlib/vfatxlib.h @@ -39,7 +39,7 @@ FatxFormat (HANDLE FileHandle, PFORMAT_CONTEXT Context); VOID -UpdateProgress (PFORMAT_CONTEXT Context, - ULONG Increment); +VfatxUpdateProgress (PFORMAT_CONTEXT Context, + ULONG Increment); /* EOF */