From a02b98af72f5a9f094acf265d86c97f7ade8c148 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Sun, 21 Jan 2007 19:12:46 +0000 Subject: [PATCH] - small fix svn path=/trunk/; revision=25564 --- reactos/base/system/autochk/autochk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/system/autochk/autochk.c b/reactos/base/system/autochk/autochk.c index f2762783914..0e0ab025c19 100644 --- a/reactos/base/system/autochk/autochk.c +++ b/reactos/base/system/autochk/autochk.c @@ -360,7 +360,7 @@ _main(int argc, if ((DeviceMap.Query.DriveMap & (1 << i)) && (DeviceMap.Query.DriveType[i] == DOSDEVICE_DRIVE_FIXED)) { - swprintf(DrivePath, L"%c:\\", 'A'+i); + swprintf(DrivePath, L"%c:\\", L'A'+i); CheckVolume(DrivePath); } }