Skip to content

Commit 0a7c1b6

Browse files
author
jef
committedAug 20, 2008
fix warning
git-svn-id: http://svn.osgeo.org/qgis/trunk@9101 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 3fa4d10 commit 0a7c1b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/spatialindex/storagemanager/RandomEvictionsBuffer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ IBuffer* SpatialIndex::StorageManager::createNewRandomEvictionsBuffer(IStorageMa
6363

6464
RandomEvictionsBuffer::RandomEvictionsBuffer(IStorageManager& sm, Tools::PropertySet& ps) : Buffer(sm, ps)
6565
{
66-
srand48(time(NULL));
66+
srand48((long)time(NULL));
6767
}
6868

6969
RandomEvictionsBuffer::~RandomEvictionsBuffer()

0 commit comments

Comments
 (0)
Please sign in to comment.