Skip to content

Commit 66165cf

Browse files
committed
Fix conversion warning in db_alias
1 parent fb0e694 commit 66165cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/db_alias.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ namespace
265265

266266
PathName confName = getFileName();
267267
const char* rootDir = Config::getRootDirectory();
268-
const FB_SIZE_T rootLen = strlen(rootDir);
268+
const FB_SIZE_T rootLen = fb_strlen(rootDir);
269269

270270
if ((confName.length() > rootLen) && (confName.compare(0, rootLen, rootDir, rootLen) == 0))
271271
confName.erase(0, rootLen);

0 commit comments

Comments
 (0)