diff options
author | monty@hundin.mysql.fi <> | 2001-08-30 21:16:39 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-08-30 21:16:39 +0300 |
commit | 91db5836e0b445398a165cf3c00f80811b735ea4 (patch) | |
tree | 88a2d8e493b1c0e0635e8f895e869182dd265d61 /myisam/ft_test1.c | |
parent | f908efb0a80f277fe4ed21f77d17a246ae383f21 (diff) | |
download | mariadb-git-91db5836e0b445398a165cf3c00f80811b735ea4.tar.gz |
Portability fixes
Diffstat (limited to 'myisam/ft_test1.c')
-rw-r--r-- | myisam/ft_test1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/myisam/ft_test1.c b/myisam/ft_test1.c index e986f686302..5093b591fb2 100644 --- a/myisam/ft_test1.c +++ b/myisam/ft_test1.c @@ -30,7 +30,6 @@ static int create_flag=0,error=0; #define MAX_REC_LENGTH 300 static char record[MAX_REC_LENGTH],read_record[MAX_REC_LENGTH]; -void get_options(int argc,char *argv[]); static int run_test(const char *filename); static void get_options(int argc, char *argv[]); static void create_record(char *, int); @@ -235,7 +234,7 @@ void create_record(char *pos, int n) /* Read options */ -void get_options(int argc,char *argv[]) +static void get_options(int argc,char *argv[]) { int c; const char *options="hVvsNSKFU#:"; |