avoid an unused variable warning

This commit is contained in:
mrg 2001-08-05 03:03:16 +00:00
parent d70e5167de
commit ca351acf50
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: promdev.c,v 1.10 2001/04/04 15:41:46 pk Exp $ */
/* $NetBSD: promdev.c,v 1.11 2001/08/05 03:03:16 mrg Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
@ -118,7 +118,7 @@ devopen(f, fname, file)
const char *fname;
char **file;
{
int error = 0, fd;
int error = 0, fd = 0;
struct promdata *pd;
pd = (struct promdata *)alloc(sizeof *pd);