diff options
author | Michael Widenius <monty@askmonty.org> | 2013-08-21 18:20:22 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2013-08-21 18:20:22 +0300 |
commit | 4712fb14b9672800ed974ce66d00a6b7be37a6b5 (patch) | |
tree | f1a853fafc99ce33deb557ad5e57aa58d94f9d3d /storage/connect/osutil.c | |
parent | 4f412a576089e79db10734e35604e86042ca8633 (diff) | |
download | mariadb-git-4712fb14b9672800ed974ce66d00a6b7be37a6b5.tar.gz |
Fixed compiler warnings
Diffstat (limited to 'storage/connect/osutil.c')
-rw-r--r-- | storage/connect/osutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/connect/osutil.c b/storage/connect/osutil.c index ad92caefe95..5570e55f3b2 100644 --- a/storage/connect/osutil.c +++ b/storage/connect/osutil.c @@ -108,7 +108,7 @@ void _splitpath(LPCSTR name, LPSTR drive, LPSTR dir, LPSTR fn, LPSTR ft) /***********************************************************************/ /* Define the makepath function not existing in the UNIX library. */ /***********************************************************************/ -void _makepath(LPSTR name, LPCSTR drive, LPCSTR dir, LPCSTR fn, LPCSTR ft) +void _makepath(LPSTR name, LPCSTR drive __attribute__((unused)), LPCSTR dir, LPCSTR fn, LPCSTR ft) { int n; @@ -196,7 +196,7 @@ char *_fullpath(char *absPath, const char *relPath, size_t maxLength) return absPath; } /* end of _fullpath */ -BOOL MessageBeep(uint i) +BOOL MessageBeep(uint i __attribute__((unused))) { // Fixme return TRUE; |