[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:
parent
3c99af9cae
commit
4171b001ac
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue