summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-11-22 13:15:17 +0200
committerunknown <monty@hundin.mysql.fi>2001-11-22 13:15:17 +0200
commitd70f4827b89579970d1b3ec429c50285324dae8c (patch)
tree60d5cefe9bdd1c85216800340716daa5b627af21 /mysys
parentcb6fcd2478c73df08fc338848dbba78b8a0e8a18 (diff)
downloadmariadb-git-d70f4827b89579970d1b3ec429c50285324dae8c.tar.gz
Portability fixmysql-3.23.45
mysys/my_seek.c: Remove warning
Diffstat (limited to 'mysys')
-rw-r--r--mysys/my_seek.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mysys/my_seek.c b/mysys/my_seek.c
index d8e8cf83b6d..7c4da4f6010 100644
--- a/mysys/my_seek.c
+++ b/mysys/my_seek.c
@@ -20,7 +20,8 @@
/* Seek to position in file */
/*ARGSUSED*/
-my_off_t my_seek(File fd, my_off_t pos, int whence, myf MyFlags)
+my_off_t my_seek(File fd, my_off_t pos, int whence,
+ myf MyFlags __attribute__((unused)))
{
reg1 os_off_t newpos;
DBUG_ENTER("my_seek");
@@ -40,7 +41,7 @@ my_off_t my_seek(File fd, my_off_t pos, int whence, myf MyFlags)
/* Tell current position of file */
/* ARGSUSED */
-my_off_t my_tell(File fd, myf MyFlags)
+my_off_t my_tell(File fd, myf MyFlags __attribute__((unused)))
{
os_off_t pos;
DBUG_ENTER("my_tell");