diff options
author | phk <phk@FreeBSD.org> | 2003-09-05 11:08:55 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-09-05 11:08:55 +0000 |
commit | 2f3a7d160641c81c9cbab8cd1a77b79119295b9a (patch) | |
tree | 526c2f79c9aa70d34df8047e415ed6c35d541597 | |
parent | 9df93ab51807da699e024bc98aa9521bd05fc8e2 (diff) | |
download | FreeBSD-src-2f3a7d160641c81c9cbab8cd1a77b79119295b9a.zip FreeBSD-src-2f3a7d160641c81c9cbab8cd1a77b79119295b9a.tar.gz |
Forgotten in previous commit to atapi-cd.c: Add #ifndef BURN_BRIDGES
around cloning routines.
-rw-r--r-- | sys/dev/ata/atapi-cd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ata/atapi-cd.h b/sys/dev/ata/atapi-cd.h index 71d1c03..6184bee 100644 --- a/sys/dev/ata/atapi-cd.h +++ b/sys/dev/ata/atapi-cd.h @@ -322,5 +322,7 @@ struct acd_softc { int block_size; /* blocksize currently used */ struct devstat *stats; /* devstat entry */ dev_t dev; /* device place holders */ +#ifndef BURN_BRIDGES eventhandler_tag clone_evh; +#endif }; |