X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/2c3d90ed127ab47e695350367ca3c34d4324bcc4..3f7e2ed0ca0fa8250dc9a708fa92c43aa4b1c2a6:/sbr/lock_file.c diff --git a/sbr/lock_file.c b/sbr/lock_file.c index c7dffcfc..af9b16d1 100644 --- a/sbr/lock_file.c +++ b/sbr/lock_file.c @@ -167,6 +167,8 @@ lkclose (int fd, char *file) lockfile_remove(lkinfo.curlock); #endif /* HAVE_LIBLOCKFILE */ timerOFF (fd); /* turn off lock timer */ +#else /* DOT_LOCKING */ + NMH_UNUSED (file); #endif /* DOT_LOCKING */ return (close (fd)); @@ -258,6 +260,8 @@ lkfclose (FILE *fp, char *file) lockfile_remove(lkinfo.curlock); #endif /* HAVE_LIBLOCKFILE */ timerOFF (fileno(fp)); /* turn off lock timer */ +#else /* DOT_LOCKING */ + NMH_UNUSED (file); #endif /* DOT_LOCKING */ return (fclose (fp)); @@ -582,6 +586,8 @@ timerOFF (int fd) static void alrmser (int sig) { + NMH_UNUSED (sig); + char *lockfile; struct lock *lp;