Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2006-02-24 16:11:36 +01:00 committed by Alexandre Julliard
parent 8851c4fc4e
commit 4aa6418d51
5 changed files with 7 additions and 7 deletions

View File

@ -60,7 +60,7 @@ static LRESULT WINAPI menu_check_wnd_proc(HWND hwnd, UINT msg, WPARAM wparam, LP
/* menu texts with their sizes */
static struct {
char *text;
SIZE size; /* size of text upto any \t */
SIZE size; /* size of text up to any \t */
SIZE sc_size; /* size of the short-cut */
} MOD_txtsizes[] = {
{ "Pinot &Noir" },

View File

@ -453,7 +453,7 @@ static DWORD wodGetPosition(WAVEMAPDATA* wom, LPMMTIME lpTime, DWORD dwParam2)
DWORD remainder = 0;
/* If we are up sampling (going from lower sample rate to higher),
** we need to make a special accomodation for times when we've
** we need to make a special accommodation for times when we've
** written a partial output sample. This happens frequently
** to us because we use msacm to do our up sampling, and it
** will up sample on an unaligned basis.
@ -1007,7 +1007,7 @@ static DWORD widGetPosition(WAVEMAPDATA* wim, LPMMTIME lpTime, DWORD dwParam2)
DWORD remainder = 0;
/* If we are up sampling (going from lower sample rate to higher),
** we need to make a special accomodation for times when we've
** we need to make a special accommodation for times when we've
** written a partial output sample. This happens frequently
** to us because we use msacm to do our up sampling, and it
** will up sample on an unaligned basis.

View File

@ -945,7 +945,7 @@ static DWORD modLongData(WORD wDevID, LPMIDIHDR lpMidiHdr, DWORD dwSize)
* If the latest is true, then the following WARNing will fire up
*/
if (lpData[0] != 0xF0 || lpData[lpMidiHdr->dwBufferLength - 1] != 0xF7) {
WARN("Alledged system exclusive buffer is not correct\n\tPlease report with MIDI file\n");
WARN("Alleged system exclusive buffer is not correct\n\tPlease report with MIDI file\n");
lpNewData = HeapAlloc(GetProcessHeap(), 0, lpMidiHdr->dwBufferLength + 2);
}

View File

@ -767,7 +767,7 @@ static void apply_shell_folder_changes() {
HRESULT hr;
for (i=0; i<NUM_ELEMS(asfiInfo); i++) {
/* Ignore non existent link targets */
/* Ignore nonexistent link targets */
if (asfiInfo[i].szLinkTarget[0] && stat(asfiInfo[i].szLinkTarget, &statPath))
continue;

View File

@ -777,9 +777,9 @@ static void inotify_notify_all( struct inotify_event *ie )
action = FILE_ACTION_MODIFIED;
/*
* Work our way up the inode heirachy
* Work our way up the inode hierarchy
* extending the relative path as we go
* and notifyiny all recursive watches.
* and notifying all recursive watches.
*/
if (!prepend( &path, ie->name ))
return;