Module: wine
Branch: master
Commit: f2c5f6a28877b3317d7ea13fe88f6bd00bac5e6e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2c5f6a28877b3317d7ea13fe…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sun Dec 28 10:36:55 2008 +0100
wnaspi32: Add a trailing '\n' to a Wine trace.
---
dlls/wnaspi32/aspi.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wnaspi32/aspi.c b/dlls/wnaspi32/aspi.c
index 2505a25..a0658e7 100644
--- a/dlls/wnaspi32/aspi.c
+++ b/dlls/wnaspi32/aspi.c
@@ -311,7 +311,7 @@ SCSI_LinuxDeviceIo( int fd,
WARN("Not enough bytes written to scsi device. bytes=%d .. %d\n", cbInBuffer, dwBytes );
/* FIXME: set_last_error() never sets error to ERROR_NOT_ENOUGH_MEMORY... */
if( save_error == ERROR_NOT_ENOUGH_MEMORY )
- MESSAGE("Your Linux kernel was not able to handle the amount of data sent to the scsi device. Try recompiling with a larger SG_BIG_BUFF value (kernel 2.0.x sg.h)");
+ MESSAGE("Your Linux kernel was not able to handle the amount of data sent to the scsi device. Try recompiling with a larger SG_BIG_BUFF value (kernel 2.0.x sg.h)\n");
WARN("error= %d\n", save_error );
*lpcbBytesReturned = 0;
return FALSE;
Module: wine
Branch: master
Commit: b7ad9c87b52cf2415cf0ad6e75f649218774f25c
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b7ad9c87b52cf2415cf0ad6e7…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sun Dec 28 10:36:46 2008 +0100
shell32/tests: Add a trailing '\n' to ok() calls.
---
dlls/shell32/tests/shlfileop.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c
index 3eb45d6..37ec523 100644
--- a/dlls/shell32/tests/shlfileop.c
+++ b/dlls/shell32/tests/shlfileop.c
@@ -717,7 +717,7 @@ static void test_copy(void)
{
/* Vista and W2K8 (broken or new behavior ?) */
ok(file_exists("test6.txt\\test1.txt"), "The file is not copied - many files "
- "are specified as a target");
+ "are specified as a target\n");
DeleteFileA("test6.txt\\test1.txt");
DeleteFileA("test6.txt\\test2.txt");
RemoveDirectoryA("test6.txt\\test4.txt");
@@ -750,9 +750,9 @@ static void test_copy(void)
{
/* Vista and W2K8 (broken or new behavior ?) */
ok(file_exists("test6.txt\\test1.txt"), "The file is not copied - many files "
- "are specified as a target");
+ "are specified as a target\n");
ok(file_exists("test7.txt\\test2.txt"), "The file is not copied - many files "
- "are specified as a target");
+ "are specified as a target\n");
DeleteFileA("test6.txt\\test1.txt");
DeleteFileA("test7.txt\\test2.txt");
RemoveDirectoryA("test6.txt");
Module: wine
Branch: master
Commit: 770d28d1809cae71d349cf55e4dd5521178af842
URL: http://source.winehq.org/git/wine.git/?a=commit;h=770d28d1809cae71d349cf55e…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sun Dec 28 10:36:37 2008 +0100
kernel32: Fix a comment in LocalInit16().
---
dlls/kernel32/local16.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/local16.c b/dlls/kernel32/local16.c
index 48bc6c3..a5b2fc7 100644
--- a/dlls/kernel32/local16.c
+++ b/dlls/kernel32/local16.c
@@ -412,7 +412,7 @@ BOOL16 WINAPI LocalInit16( HANDLE16 selector, WORD start, WORD end )
if (TRACE_ON(local))
{
- /* If TRACE_ON(heap) is set, the global heap blocks are */
+ /* If TRACE_ON(local) is set, the global heap blocks are */
/* cleared before use, so we can test for double initialization. */
if (LOCAL_GetHeap(selector))
{