diff --git a/dlls/dplayx/name_server.c b/dlls/dplayx/name_server.c index 3527877ed21..928e082080c 100644 --- a/dlls/dplayx/name_server.c +++ b/dlls/dplayx/name_server.c @@ -169,7 +169,7 @@ LPVOID NS_GetNSAddr( LPVOID lpNSInfo ) /* Ok. Cheat and don't search for the correct stuff just take the first. * FIXME: In the future how are we to know what is _THE_ enum we used? * This is going to have to go into dplay somehow. Perhaps it - * comes back with app server id for the join command! Oh...that + * comes back with app server id for the join command! Oh... that * must be it. That would make this method obsolete once that's * in place. */ diff --git a/dlls/dsound/sound3d.c b/dlls/dsound/sound3d.c index 2397f52ad27..252c7632667 100644 --- a/dlls/dsound/sound3d.c +++ b/dlls/dsound/sound3d.c @@ -106,7 +106,7 @@ static inline D3DVALUE RadToDeg (D3DVALUE angle) static inline D3DVALUE AngleBetweenVectorsRad (const D3DVECTOR *a, const D3DVECTOR *b) { D3DVALUE la, lb, product, angle, cos; - /* definition of scalar product: a*b = |a|*|b|*cos...therefore: */ + /* definition of scalar product: a*b = |a|*|b|*cos... therefore: */ product = ScalarProduct (a,b); la = VectorMagnitude (a); lb = VectorMagnitude (b); diff --git a/dlls/kernel32/format_msg.c b/dlls/kernel32/format_msg.c index c983c95ae2c..0920d66c949 100644 --- a/dlls/kernel32/format_msg.c +++ b/dlls/kernel32/format_msg.c @@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(resource); -/* Messages...used by FormatMessage (KERNEL32.something) +/* Messages used by FormatMessage * * They can be specified either directly or using a message ID and * loading them from the resource. diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index 3c88a36f766..fe848046861 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -6606,7 +6606,7 @@ static HRESULT OLECONVERT_LoadOLE10(LPOLESTREAM pOleStream, OLECONVERT_OLESTREAM if(hRes == S_OK) { - /* Get the TypeID...more info needed for this field */ + /* Get the TypeID... more info needed for this field */ dwSize = pOleStream->lpstbl->Get(pOleStream, (void *)&(pData->dwTypeID), sizeof(pData->dwTypeID)); if(dwSize != sizeof(pData->dwTypeID)) { diff --git a/dlls/riched20/run.c b/dlls/riched20/run.c index 133219d37b8..e2fde47bcd0 100644 --- a/dlls/riched20/run.c +++ b/dlls/riched20/run.c @@ -813,7 +813,7 @@ void ME_SetCharFormat(ME_TextEditor *editor, int nOfs, int nChars, CHARFORMAT2W undo->nStart = tmp.pRun->member.run.nCharOfs+para->member.para.nCharOfs; undo->nLen = tmp.pRun->member.run.strText->nLen; undo->di.member.ustyle = tmp.pRun->member.run.style; - /* we'd have to addref undo..ustyle and release tmp...style + /* we'd have to addref undo...ustyle and release tmp...style but they'd cancel each other out so we can do nothing instead */ } else diff --git a/dlls/uxtheme/system.c b/dlls/uxtheme/system.c index d213ba2850b..c1e26c8b32c 100644 --- a/dlls/uxtheme/system.c +++ b/dlls/uxtheme/system.c @@ -916,7 +916,7 @@ HRESULT WINAPI CloseThemeFile(HTHEMEFILE hThemeFile) * char b[] = "\0"; where \0 can be one or more of any character, makes no difference * the theme is applied smoothly (screen does not flicker) * char *b = "\0" or NULL; where \0 can be zero or more of any character, makes no difference - * the function fails returning invalid parameter...very strange + * the function fails returning invalid parameter... very strange */ HRESULT WINAPI ApplyTheme(HTHEMEFILE hThemeFile, char *unknown, HWND hWnd) { diff --git a/dlls/winmm/mci.c b/dlls/winmm/mci.c index d6ca7f0a953..a3d679f7fbd 100644 --- a/dlls/winmm/mci.c +++ b/dlls/winmm/mci.c @@ -1121,7 +1121,7 @@ static DWORD MCI_ParseOptArgs(LPDWORD data, int _offset, LPCWSTR lpCmd, } break; case MCI_RECT: - /* store rect in data (offset...offset+3) */ + /* store rect in data (offset..offset+3) */ *dwFlags |= flg; if (!MCI_GetDWord(&(data[offset+0]), &args) || !MCI_GetDWord(&(data[offset+1]), &args) || diff --git a/programs/cmdlgtst/cmdlgtst.c b/programs/cmdlgtst/cmdlgtst.c index d19c119cb7c..0c8b2b1a0d4 100644 --- a/programs/cmdlgtst/cmdlgtst.c +++ b/programs/cmdlgtst/cmdlgtst.c @@ -885,8 +885,8 @@ static LRESULT CALLBACK EXPORT mainWindowDispatcher( else switch(uMsg) { case WM_CREATE: /* - * this is always the first message...at least as far as - * we are concerned. + * this is always the first message... at least as far + * as we are concerned. */ mwi_InitAll(hWnd); break; diff --git a/tools/winedump/debug.c b/tools/winedump/debug.c index 092078654be..be8150f4936 100644 --- a/tools/winedump/debug.c +++ b/tools/winedump/debug.c @@ -69,7 +69,7 @@ * (hdr) IMAGE_SECTION_HEADER - list of COFF sections copied verbatim from .EXE; * although this directory contains file offsets, these offsets are meaningless * in the context of the .DBG file, because only the section headers are copied - * to the .DBG file...not the binary data it points to. + * to the .DBG file... not the binary data it points to. * (hdr) IMAGE_DEBUG_DIRECTORY - list of different formats of debug info contained in file * (see IMAGE_DEBUG_TYPE_* descriptions below); tells where each section starts * (hdr) OMFSignature (CV) - Contains "NBxx" signature, plus file offset telling how far