Fix enum to prevent crash (PR 42734)

This commit is contained in:
joerg 2010-02-03 19:27:01 +00:00
parent 3ca90ff886
commit 6ab7422234
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lib.h,v 1.1.1.11 2010/02/03 14:23:51 joerg Exp $ */
/* $NetBSD: lib.h,v 1.2 2010/02/03 19:27:01 joerg Exp $ */
/* from FreeBSD Id: lib.h,v 1.25 1997/10/08 07:48:03 charnier Exp */
@ -184,8 +184,8 @@ typedef enum bi_ent_t {
BI_IGNORE_RECOMMENDED, /* 3 */
BI_USE_ABI_DEPENDS, /* 4 */
BI_LICENSE, /* 5 */
BI_ENUM_COUNT, /* 6 */
BI_PKGTOOLS_VERSION /* 7 */
BI_PKGTOOLS_VERSION, /* 6 */
BI_ENUM_COUNT /* 7 */
} bi_ent_t;
/* Types */

View File

@ -1,4 +1,4 @@
/* $NetBSD: version.h,v 1.1.1.25 2010/02/03 14:23:59 joerg Exp $ */
/* $NetBSD: version.h,v 1.2 2010/02/03 19:27:01 joerg Exp $ */
/*
* Copyright (c) 2001 Thomas Klausner. All rights reserved.
@ -27,6 +27,6 @@
#ifndef _INST_LIB_VERSION_H_
#define _INST_LIB_VERSION_H_
#define PKGTOOLS_VERSION 20100203
#define PKGTOOLS_VERSION 20100204
#endif /* _INST_LIB_VERSION_H_ */