Andrew Talbot : dmband: Constify some variables.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Apr 25 07:06:32 CDT 2007


Module: wine
Branch: master
Commit: 318ebd2289632e315ef4d6bea27907738bdcc78c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=318ebd2289632e315ef4d6bea27907738bdcc78c

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Tue Apr 24 20:49:18 2007 +0100

dmband: Constify some variables.

---

 dlls/dmband/dmutils.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dmband/dmutils.c b/dlls/dmband/dmutils.c
index 4c4ca43..97922e6 100644
--- a/dlls/dmband/dmutils.c
+++ b/dlls/dmband/dmutils.c
@@ -116,7 +116,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'";
@@ -129,7 +129,7 @@ static const char *debugstr_filetime (LPFILETIME time) {
 }
 
 /* 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),




More information about the wine-cvs mailing list