2009-08-04 14:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/rtl/gtsln/kbsln.c
    ! Silenced linux/sunpro warning.

  * config/linux/sunpro.cf
    ! Minor fix.
This commit is contained in:
Viktor Szakats
2009-08-04 12:59:48 +00:00
parent c88bc902ad
commit abb6886ede
3 changed files with 14 additions and 1 deletions

View File

@@ -17,6 +17,13 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-08-04 14:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/rtl/gtsln/kbsln.c
! Silenced linux/sunpro warning.
* config/linux/sunpro.cf
! Minor fix.
2009-08-04 12:41 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbtpathy/tpwin.c
* contrib/hbtpathy/ChangeLog

View File

@@ -19,6 +19,7 @@ CC_IN = -c
# Now solved with '$(subst x,x, )' expression.
CC_OUT = -o$(subst x,x, )
CFLAGS =
CPPFLAGS = -I. -I$(HB_INC_COMPILE)
LDFLAGS =

View File

@@ -497,9 +497,14 @@ static int hb_sln_try_get_Kbd_State( void )
return modifiers;
}
#endif
else
return 0;
#else
return 0;
#endif
}
/* *********************************************************************** */