aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt1
-rw-r--r--ports/linux/guts/renameat2.c5
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index b5f64c7..60666e5 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,6 +1,7 @@
2019-04-10:
* (seebs) Experimental workaround for special non-blocking open
case.
+ * (seebs) fix warnings in renameat2.
2019-04-09:
* (seebs) Partial fix for db corruption issue.
diff --git a/ports/linux/guts/renameat2.c b/ports/linux/guts/renameat2.c
index 0df8369..135933b 100644
--- a/ports/linux/guts/renameat2.c
+++ b/ports/linux/guts/renameat2.c
@@ -9,6 +9,11 @@
* int rc = -1;
*/
+ (void) olddirfd;
+ (void) oldpath;
+ (void) newdirfd;
+ (void) newpath;
+ (void) flags;
/* for now, let's try just failing out hard, and hope things retry with a
* different syscall.
*/