1
0
Fork 0

fix g++ warning

This commit is contained in:
Jan Steemann 2012-11-20 08:59:53 +01:00
parent 85a8f56a34
commit 3d70b85734
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ bool ApplicationV8::prepareV8Instance (const size_t i) {
TRI_InitV8Shell(context->_context);
// load all init files
for (int j = 0; j < sizeof(files) / sizeof(files[0]); ++j) {
for (size_t j = 0; j < sizeof(files) / sizeof(files[0]); ++j) {
bool ok = _startupLoader.loadScript(context->_context, files[j]);
if (! ok) {