diff options
author | monty@bitch.mysql.fi <> | 2001-11-28 02:55:52 +0200 |
---|---|---|
committer | monty@bitch.mysql.fi <> | 2001-11-28 02:55:52 +0200 |
commit | d0ccff50907e7b04f0d14ad95f359dc23e6dc294 (patch) | |
tree | 40e5d73c964ca6aeb5e0e7d4294e70216edaa397 /tools | |
parent | d3288575de18b38179961a8acf93ba883a90e652 (diff) | |
download | mariadb-git-d0ccff50907e7b04f0d14ad95f359dc23e6dc294.tar.gz |
New improved IO_CACHE
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mysqlmanager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c index aa645b609d8..31df66d10c6 100644 --- a/tools/mysqlmanager.c +++ b/tools/mysqlmanager.c @@ -1687,7 +1687,7 @@ static void init_pid_file() if (!fp) die("Could not open pid file %s", pid_file); created_pid_file=1; - fprintf(fp, "%d\n", getpid()); + fprintf(fp, "%d\n", (int) getpid()); fclose(fp); } |