From 2df191bba629d480468bb73cf0f477810e0e97f2 Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Thu, 4 Feb 1999 16:38:12 +0000 Subject: [PATCH] Another usage of non-portable functions... --- dlls/msacm32/driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msacm32/driver.c b/dlls/msacm32/driver.c index 06fe045744a..bee3d110c2a 100644 --- a/dlls/msacm32/driver.c +++ b/dlls/msacm32/driver.c @@ -311,7 +311,7 @@ MMRESULT32 WINAPI acmDriverPriority32( for(dwPriorityCounter = 1; ; dwPriorityCounter++) { - snprintf(szSubKey, 17, "Priorty%ld", dwPriorityCounter); + wsnprintf32A(szSubKey, 17, "Priorty%ld", dwPriorityCounter); lError = RegQueryValue32A(hPriorityKey, szSubKey, szBuffer, &lBufferLength); if(lError != ERROR_SUCCESS) break; -- 2.11.4.GIT