Andrew Talbot : dmband: Remove unneeded address-of operators from array names.

Alexandre Julliard julliard at winehq.org
Thu Jul 10 08:58:25 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Wed Jul  9 20:36:51 2008 +0100

dmband: Remove unneeded address-of operators from array names.

---

 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 a126513..bfec1f1 100644
--- a/dlls/dmband/dmutils.c
+++ b/dlls/dmband/dmutils.c
@@ -180,13 +180,13 @@ HRESULT IDirectMusicUtils_IPersistStream_ParseDescGeneric (DMUS_PRIVATE_CHUNK* p
   case DMUS_FOURCC_NAME_CHUNK: {
     TRACE_(dmfile)(": name chunk\n");
     pDesc->dwValidData |= DMUS_OBJ_NAME;
-    IStream_Read (pStm, &pDesc->wszName, pChunk->dwSize, NULL);
+    IStream_Read (pStm, pDesc->wszName, pChunk->dwSize, NULL);
     break;
   }
   case DMUS_FOURCC_FILE_CHUNK: {
     TRACE_(dmfile)(": file name chunk\n");
     pDesc->dwValidData |= DMUS_OBJ_FILENAME;
-    IStream_Read (pStm, &pDesc->wszFileName, pChunk->dwSize, NULL);
+    IStream_Read (pStm, pDesc->wszFileName, pChunk->dwSize, NULL);
     break;
   }
   case DMUS_FOURCC_VERSION_CHUNK: {




More information about the wine-cvs mailing list