2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

iadd missing const

This commit is contained in:
Mark Andrews
2001-09-20 06:50:34 +00:00
parent ad8e6236a4
commit ae5df22719

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: time.c,v 1.41 2001/09/05 17:22:51 gson Exp $ */
/* $Id: time.c,v 1.42 2001/09/20 06:50:34 marka Exp $ */
#include <config.h>
@@ -323,7 +323,7 @@ isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) {
}
isc_uint32_t
isc_time_seconds(isc_time_t *t) {
isc_time_seconds(const isc_time_t *t) {
REQUIRE(t != NULL);
INSIST(t->nanoseconds < NS_PER_S);