diff options
author | Michael Widenius <monty@askmonty.org> | 2010-08-28 16:51:09 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-08-28 16:51:09 +0300 |
commit | 7b91240bbab3094c8c148c46949c0202ae1e991d (patch) | |
tree | 089b3976be2b065d307fdd01b8db6de7d473a16f /regex | |
parent | 85a789998872c7215f24ba89f0d1f2335e314d07 (diff) | |
download | mariadb-git-7b91240bbab3094c8c148c46949c0202ae1e991d.tar.gz |
Fixed build & test failures in buildbot
mysql-test/t/bug46080-master.opt:
Lower limits to be able to run tests
regex/main.c:
Fixed compiler warnings
storage/maria/ma_key_recover.c:
Fixed compiler warnings
storage/maria/ma_recovery.c:
Fixed compiler warnings
storage/maria/ma_unique.c:
Fixed compiler warnings
strings/ctype-uca.c:
Added comment
strings/xml.c:
Fixed compiler warnings
support-files/compiler_warnings.supp:
Added suppressions for windows
unittest/strings/strings-t.c:
Added ifdef to fix compilation failure when compiling without UCA
Diffstat (limited to 'regex')
-rw-r--r-- | regex/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regex/main.c b/regex/main.c index fa97ca89047..e8277053382 100644 --- a/regex/main.c +++ b/regex/main.c @@ -17,8 +17,8 @@ regoff_t startoff = 0; regoff_t endoff = 0; -extern int split(); -extern void regprint(); +extern int split(char *string, char **fields, int nfields, const char *sep); +extern void regprint(my_regex_t *r, FILE *d); /* - main - do the simple case, hand off to regress() for regression |