diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2014-03-07 10:23:06 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2014-03-07 10:23:06 +0000 |
commit | 55845650d9eb4c82a1e393b9ebf08cd9840f39a4 (patch) | |
tree | 4fe39969914d9d3cdb2d739297b46391468561be /usr.bin/sndiod/dev.h | |
parent | 7857ace69496012edb6bed99c138dba69a1c8151 (diff) |
remove unused "delta" argument from onmove callbacks
Diffstat (limited to 'usr.bin/sndiod/dev.h')
-rw-r--r-- | usr.bin/sndiod/dev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sndiod/dev.h b/usr.bin/sndiod/dev.h index 25bf24ae786..cc2f51ea59a 100644 --- a/usr.bin/sndiod/dev.h +++ b/usr.bin/sndiod/dev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dev.h,v 1.6 2014/03/07 10:15:39 ratchov Exp $ */ +/* $OpenBSD: dev.h,v 1.7 2014/03/07 10:23:05 ratchov Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org> * @@ -27,7 +27,7 @@ struct slotops { - void (*onmove)(void *, int); /* clock tick */ + void (*onmove)(void *); /* clock tick */ void (*onvol)(void *, unsigned int); /* tell client vol changed */ void (*fill)(void *); /* request to fill a play block */ void (*flush)(void *); /* request to flush a rec block */ |