2011-05-19 20:28 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* src/rtl/arc4.c
    ! silence warning on bsd [Tamas Tevesz]
This commit is contained in:
Viktor Szakats
2011-05-19 18:30:36 +00:00
parent 2796724106
commit 8fc97aca43
2 changed files with 5 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-05-19 20:28 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/arc4.c
! silence warning on bsd [Tamas Tevesz]
2011-05-19 11:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtgui/hbqt_hbqplaintextedit.cpp
! Fixed: regression on optimization on syantax highlighting.

View File

@@ -276,7 +276,7 @@ static int arc4_seed_sysctl_bsd( void )
}
/* make sure that the buffer actually got set. */
for( i = any_set = 0; i < sizeof( buf ); ++i )
for( i = any_set = 0; i < ( int ) sizeof( buf ); ++i )
any_set |= buf[ i ];
if( ! any_set )