diff options
Diffstat (limited to 'release/sysinstall/uc_eisa.c')
-rw-r--r-- | release/sysinstall/uc_eisa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/uc_eisa.c b/release/sysinstall/uc_eisa.c index 094a77d..12abd73 100644 --- a/release/sysinstall/uc_eisa.c +++ b/release/sysinstall/uc_eisa.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: uc_eisa.c,v 1.4 1997/02/22 14:12:26 peter Exp $ */ #include <sys/types.h> @@ -142,7 +142,7 @@ eisa_fill_in(struct kernel *kp, struct uc_eisa *epc, struct eisa_device_node *ed sizeof(struct eisa_driver)); n=(char *)kv_to_u(kp, (u_int)edrv->name, 20); - asprintf(&epc->device, "%s%d", n, edn->dev.unit); + asprintf(&epc->device, "%s%lu", n, edn->dev.unit); free(n); n=(char *)kv_to_u(kp, (u_int)edn->dev.full_name, 40); /*XXX*/ |