diff options
author | Michael Widenius <monty@askmonty.org> | 2010-03-31 23:50:54 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-03-31 23:50:54 +0300 |
commit | 33a5571bb261ce23f7b32e4b9ba2caa53dc4c752 (patch) | |
tree | cac757d20b5a287326b4b9a58a24c0d7a931459d /mysys | |
parent | cebec393cf0a5558a2800fb193ba098bda4eabe1 (diff) | |
download | mariadb-git-33a5571bb261ce23f7b32e4b9ba2caa53dc4c752.tar.gz |
Added missing space from last push
Fixed compiler warnings
mysys/my_gethostbyname.c:
Added missing space from last push
storage/xtradb/handler/i_s.cc:
Removed not used variable
storage/xtradb/log/log0recv.c:
Removed not used variable
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_gethostbyname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_gethostbyname.c b/mysys/my_gethostbyname.c index 985a76faf0d..abd388302be 100644 --- a/mysys/my_gethostbyname.c +++ b/mysys/my_gethostbyname.c @@ -95,7 +95,7 @@ struct hostent * my_gethostbyname_r(const char *name, struct hostent *result __attribute__((unused)), char *buffer __attribute__((unused)), - int buflen__attribute__((unused)), + int buflen __attribute__((unused)), int *h_errnop) { struct hostent *hp; |