diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-19 20:35:43 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-19 20:35:43 +0200 |
commit | 6bd49441b53dbd7ed0a9cb53983dbe3cb253a8ed (patch) | |
tree | 4f2325633d66c9a7b065480a67bbdc64c7038bff /storage/connect/filamdbf.cpp | |
parent | 337c1b3ee83033a185daa4e2df8c8a36f54c2bf7 (diff) | |
download | mariadb-git-6bd49441b53dbd7ed0a9cb53983dbe3cb253a8ed.tar.gz |
CONNECT engine fixes after 10.0 merge.
Adaptation to new API, small simplifications and bug fixes
Diffstat (limited to 'storage/connect/filamdbf.cpp')
-rw-r--r-- | storage/connect/filamdbf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/filamdbf.cpp b/storage/connect/filamdbf.cpp index 8b3a31579eb..3575a6b422a 100644 --- a/storage/connect/filamdbf.cpp +++ b/storage/connect/filamdbf.cpp @@ -176,7 +176,7 @@ static int dbfhead(PGLOBAL g, FILE *file, PSZ fn, DBFHEADER *buf) /* DBFColumns: constructs the result blocks containing the description */ /* of all the columns of a DBF file that will be retrieved by #GetData. */ /****************************************************************************/ -PQRYRES DBFColumns(PGLOBAL g, char *fn, BOOL info) +PQRYRES DBFColumns(PGLOBAL g, const char *fn, BOOL info) { static int dbtype[] = {DB_CHAR, DB_SHORT, DB_CHAR, DB_INT, DB_INT, DB_SHORT}; |