Minor cosmetic changes.
diff --git a/dlls/comctl32/treeview.c b/dlls/comctl32/treeview.c index b51e037..17b29c5 100644 --- a/dlls/comctl32/treeview.c +++ b/dlls/comctl32/treeview.c
@@ -3016,7 +3016,7 @@ if (! wineItem) { ERR( - "Catastropic situation, cannot retreive item #%d\n", + "Catastrophic situation, cannot retrieve item #%d\n", expand); return FALSE; }
diff --git a/graphics/x11drv/dib.c b/graphics/x11drv/dib.c index 3bc0071..06c7d63 100644 --- a/graphics/x11drv/dib.c +++ b/graphics/x11drv/dib.c
@@ -2602,7 +2602,7 @@ descr->infoWidth, lines, 32, 0 ); bmpImage->data = calloc( lines, bmpImage->bytes_per_line ); if(bmpImage->data == NULL) { - ERR("Out of memory!"); + ERR("Out of memory!\n"); XDestroyImage( bmpImage ); return lines; } @@ -2705,7 +2705,7 @@ descr->infoWidth, lines, 32, 0 ); bmpImage->data = calloc( lines, bmpImage->bytes_per_line ); if(bmpImage->data == NULL) { - ERR("Out of memory!"); + ERR("Out of memory!\n"); XDestroyImage( bmpImage ); return lines; } }
diff --git a/include/miscemu.h b/include/miscemu.h index a6ddb1e..7807486 100644 --- a/include/miscemu.h +++ b/include/miscemu.h
@@ -245,7 +245,7 @@ /* NOTE: Interrupts might get called from three modes: real mode, 16-bit, and * (via DeviceIoControl) 32-bit. For automatic conversion of pointer * parameters, interrupt handlers should use CTX_SEG_OFF_TO_LIN with - * the contents of a segement register as second and the contents of + * the contents of a segment register as second and the contents of * a *32-bit* general register as third parameter, e.g. * CTX_SEG_OFF_TO_LIN( context, DS_reg(context), EDX_reg(context) ) * This will generate a linear pointer in all three cases:
diff --git a/misc/comm.c b/misc/comm.c index 82cd707..94322d7 100644 --- a/misc/comm.c +++ b/misc/comm.c
@@ -508,7 +508,7 @@ /* not enough memory */ tcsetattr(COM[port].fd,TCSANOW,&m_stat[port]); close(COM[port].fd); - ERR("out of memory"); + ERR("out of memory\n"); return IE_MEMORY; }
diff --git a/misc/version.c b/misc/version.c index b6ff64d..5c6fa62 100644 --- a/misc/version.c +++ b/misc/version.c
@@ -63,7 +63,7 @@ }, /* WIN98 */ { - 0x07005F03, /* FIXME: need DOS value from real Win98 */ + 0x070A5F03, 0xC0000A04, { sizeof(OSVERSIONINFOA), 4, 10, 0x40A07CE,
diff --git a/msdos/int2f.c b/msdos/int2f.c index ff62050..dca31b5 100644 --- a/msdos/int2f.c +++ b/msdos/int2f.c
@@ -82,7 +82,7 @@ DI_reg(context) = 0x0000; break; case 0x08: - FIXME("No real-mode handler for errors yet! (bye!)"); + FIXME("No real-mode handler for errors yet! (bye!)\n"); break; default: INT_BARF(context, 0x2f);