Commit 835d478f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

dmime: Constify some variables.

parent b19be887
......@@ -242,7 +242,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),
......@@ -269,7 +269,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'";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment