diff options
author | phk <phk@FreeBSD.org> | 2002-03-26 22:08:04 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-03-26 22:08:04 +0000 |
commit | 63f0cd928d2f15ffd569b269d59dcb40916ae53d (patch) | |
tree | 8fb5045e5860956b44821098fb0f9788ba71310c /tools/regression/geom/geom.c | |
parent | aeded841430797cf6f57896a1b74eaa00e0dd056 (diff) | |
download | FreeBSD-src-63f0cd928d2f15ffd569b269d59dcb40916ae53d.zip FreeBSD-src-63f0cd928d2f15ffd569b269d59dcb40916ae53d.tar.gz |
Track changes in sys/geom
Diffstat (limited to 'tools/regression/geom/geom.c')
-rw-r--r-- | tools/regression/geom/geom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/regression/geom/geom.c b/tools/regression/geom/geom.c index 4a95458..1852cc4 100644 --- a/tools/regression/geom/geom.c +++ b/tools/regression/geom/geom.c @@ -46,6 +46,7 @@ #include <sys/time.h> #include <sys/sbuf.h> #include <geom/geom.h> +#include <geom/geom_int.h> void conff(char *file) @@ -99,7 +100,7 @@ thread_event(void *ptr) printf("Running %s\n", tp->name); for (;;) { usleep(100000); - g_run_events(tp); + g_run_events(); tsleep(&g_wait_event, 0, "events", 0); } } |