diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 0febefc1ff..8dd42ede23 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,14 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2001-12-15 11:37 UTC+0100 Viktor Szakats + + * source/rtl/isprint.c + ! Fixed DJGPP warning for DOS branch. + + * source/rtl/fstemp.c + ! One unused #include added. Well, it was used. + 2001-12-15 10:53 UTC+0100 Viktor Szakats * source/rtl/tbcolumn.prg diff --git a/harbour/source/rtl/fstemp.c b/harbour/source/rtl/fstemp.c index 7fd0f5fe2b..96d1795877 100644 --- a/harbour/source/rtl/fstemp.c +++ b/harbour/source/rtl/fstemp.c @@ -54,6 +54,8 @@ #include "hbapi.h" #include "hbapifs.h" +#include + /* NOTE: The buffer must be at least _POSIX_PATH_MAX chars long */ static BOOL hb_fsTempName( BYTE * pszBuffer, const BYTE * pszDir, const BYTE * pszPrefix ) diff --git a/harbour/source/rtl/isprint.c b/harbour/source/rtl/isprint.c index 5651d294e6..c5f46cebdf 100644 --- a/harbour/source/rtl/isprint.c +++ b/harbour/source/rtl/isprint.c @@ -108,6 +108,9 @@ HB_FUNC( ISPRINTER ) /* TODO: Proper COM port checking */ bIsPrinter = TRUE; } + else + bIsPrinter = FALSE; + #elif defined(HB_OS_WIN_32) && !defined(__RSXNT__)