mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Fix warnings
svn path=/trunk/; revision=16767
This commit is contained in:
parent
b4ee0d0b03
commit
e5d3501d91
2 changed files with 6 additions and 2 deletions
|
@ -918,14 +918,14 @@ PrintDiskData (PPARTLIST List,
|
||||||
if (DiskEntry->DriverName.Length > 0)
|
if (DiskEntry->DriverName.Length > 0)
|
||||||
{
|
{
|
||||||
sprintf (LineBuffer,
|
sprintf (LineBuffer,
|
||||||
"%6I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ",
|
"%6I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S",
|
||||||
DiskSize,
|
DiskSize,
|
||||||
Unit,
|
Unit,
|
||||||
DiskEntry->DiskNumber,
|
DiskEntry->DiskNumber,
|
||||||
DiskEntry->Port,
|
DiskEntry->Port,
|
||||||
DiskEntry->Bus,
|
DiskEntry->Bus,
|
||||||
DiskEntry->Id,
|
DiskEntry->Id,
|
||||||
&DiskEntry->DriverName);
|
DiskEntry->DriverName.Buffer);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,6 +27,10 @@
|
||||||
#ifndef __USETUP_H__
|
#ifndef __USETUP_H__
|
||||||
#define __USETUP_H__
|
#define __USETUP_H__
|
||||||
|
|
||||||
|
/* C Headers */
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
/* PSDK/NDK */
|
/* PSDK/NDK */
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <fmifs/fmifs.h>
|
#include <fmifs/fmifs.h>
|
||||||
|
|
Loading…
Reference in a new issue