mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
dmstyle: Constify some variables.
This commit is contained in:
parent
835d478fca
commit
cd86d218b6
1 changed files with 2 additions and 2 deletions
|
@ -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'";
|
||||
|
|
Loading…
Reference in a new issue