Just a couple of typo fixes that have been lying in my tree for quite some time now. Somehow I lack inspiration for finding more lately. Changelog: * tools/winedump/output.c, include/console.h Small typo fix -- Francois Gouget fgouget@free.fr http://fgouget.free.fr/ Computers are like airconditioners They stop working properly if you open WINDOWS
Index: tools/winedump/output.c =================================================================== RCS file: /home/wine/wine/tools/winedump/output.c,v retrieving revision 1.3 diff -u -r1.3 output.c --- tools/winedump/output.c 2001/11/05 23:54:11 1.3 +++ tools/winedump/output.c 2002/01/14 17:39:00 @@ -65,7 +65,7 @@ ord_spec[1] = '\0'; } if (sym->flags & SYM_THISCALL) - strcat (ord_spec, " -i386"); /* For binary compatability only */ + strcat (ord_spec, " -i386"); /* For binary compatibility only */ if (!globals.do_code || !sym->function_name) { Index: include/console.h =================================================================== RCS file: /home/wine/wine/include/console.h,v retrieving revision 1.17 diff -u -r1.17 console.h --- include/console.h 2001/11/06 20:57:19 1.17 +++ include/console.h 2002/01/13 19:30:07 @@ -48,7 +48,7 @@ void (*resizeScreen)(int, int); void (*notifyResizeScreen)(int, int); /* May be rethought later... */ - /* Accellerator Functions (Screen) */ + /* Accelerator Functions (Screen) */ void (*clearWindow)(char, char, char, char, int, int); void (*scrollUpWindow)(char, char, char, char, char, int, int); void (*scrollDownWindow)(char, char, char, char, char, int, int);