Module: wine Branch: master Commit: f2c5f6a28877b3317d7ea13fe88f6bd00bac5e6e URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2c5f6a28877b3317d7ea13fe8...
Author: Francois Gouget fgouget@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;