[GB.DB.SQLITE2]

* BUG: Fix an incorrect implicit cast for gcc 7.


git-svn-id: svn://localhost/gambas/trunk@8076 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2017-02-01 01:10:28 +00:00
parent 3c99af9cae
commit 4171b001ac

View file

@ -765,7 +765,7 @@ fType GetFieldType(const char *Type, unsigned int *length )
_right = (char *)rindex(Type, ')');
_left = (char *)index(Type, '(');
if (_right){
_right = '\0';
_right = NULL;
rTypeLen = atoi(_left + 1);
}
else {