diff options
author | phk <phk@FreeBSD.org> | 2002-04-16 11:42:13 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-04-16 11:42:13 +0000 |
commit | d9b060bed348d8dcfc6d151462f56bd5cdb9de1e (patch) | |
tree | c05ea6e18bb7021635382ed2389e0093888ad030 /tools/regression/geom/geom_sim.h | |
parent | b9814500193331e3b93b279ab5224b997694ddfe (diff) | |
download | FreeBSD-src-d9b060bed348d8dcfc6d151462f56bd5cdb9de1e.zip FreeBSD-src-d9b060bed348d8dcfc6d151462f56bd5cdb9de1e.tar.gz |
Forgot to commit the updates to the regression test suite.
Sponsored by: DARPA & NAI labs.
Diffstat (limited to 'tools/regression/geom/geom_sim.h')
-rw-r--r-- | tools/regression/geom/geom_sim.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/regression/geom/geom_sim.h b/tools/regression/geom/geom_sim.h index 4350f1d..df08220 100644 --- a/tools/regression/geom/geom_sim.h +++ b/tools/regression/geom/geom_sim.h @@ -60,7 +60,7 @@ struct bio { off_t bio_length; off_t bio_completed; void *bio_data; - char *bio_attribute; /* BIO_GETATTR/BIO_SETATTR */ + const char *bio_attribute; /* BIO_GETATTR/BIO_SETATTR */ int bio_error; struct bio *bio_linkage; @@ -107,7 +107,7 @@ void mtx_lock(struct mtx *); void mtx_lock_spin(struct mtx *); void mtx_unlock(struct mtx *); void mtx_unlock_spin(struct mtx *); -void mtx_init(struct mtx *, char *, int); +void mtx_init(struct mtx *, const char *, const char *, int); void mtx_destroy(struct mtx *); #define MALLOC_DECLARE(foo) /* */ |