From cd86d218b64dc213906cec3efd458ca7e8aa5dd2 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Tue, 24 Apr 2007 20:52:52 +0100 Subject: [PATCH] dmstyle: Constify some variables. --- dlls/dmstyle/dmutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dmstyle/dmutils.c b/dlls/dmstyle/dmutils.c index d8940157df..0dcc4f55dd 100644 --- a/dlls/dmstyle/dmutils.c +++ b/dlls/dmstyle/dmutils.c @@ -256,7 +256,7 @@ const char *debugstr_fourcc (DWORD fourcc) { } /* DMUS_VERSION struct to string conversion for debug messages */ -static const char *debugstr_dmversion (LPDMUS_VERSION version) { +static const char *debugstr_dmversion (const DMUS_VERSION *version) { if (!version) return "'null'"; return wine_dbg_sprintf ("\'%i,%i,%i,%i\'", HIWORD(version->dwVersionMS),LOWORD(version->dwVersionMS), @@ -283,7 +283,7 @@ static const char *debugstr_month (DWORD dwMonth) { } /* FILETIME struct to string conversion for debug messages */ -static const char *debugstr_filetime (LPFILETIME time) { +static const char *debugstr_filetime (const FILETIME *time) { SYSTEMTIME sysTime; if (!time) return "'null'";