dmband: Constify some variables.
This commit is contained in:
parent
cd86d218b6
commit
318ebd2289
|
@ -116,7 +116,7 @@ static const char *debugstr_month (DWORD dwMonth) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FILETIME struct to string conversion for debug messages */
|
/* 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;
|
SYSTEMTIME sysTime;
|
||||||
|
|
||||||
if (!time) return "'null'";
|
if (!time) return "'null'";
|
||||||
|
@ -129,7 +129,7 @@ static const char *debugstr_filetime (LPFILETIME time) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* DMUS_VERSION struct to string conversion for debug messages */
|
/* 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'";
|
if (!version) return "'null'";
|
||||||
return wine_dbg_sprintf ("\'%i,%i,%i,%i\'",
|
return wine_dbg_sprintf ("\'%i,%i,%i,%i\'",
|
||||||
HIWORD(version->dwVersionMS),LOWORD(version->dwVersionMS),
|
HIWORD(version->dwVersionMS),LOWORD(version->dwVersionMS),
|
||||||
|
|
Loading…
Reference in New Issue