diff options
author | grant <grant@pkgsrc.org> | 2004-11-20 06:41:35 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-11-20 06:41:35 +0000 |
commit | 7d0afdf9df626300dfb06ae6eebe6e1fcfd77748 (patch) | |
tree | a692716f9c656a87166b8784c7576c24c65209f0 /pkgtools | |
parent | d1a7158f892efcbb103cf642bd49f684f69b1da1 (diff) | |
download | pkgsrc-7d0afdf9df626300dfb06ae6eebe6e1fcfd77748.tar.gz |
sync with src:
no trailing comma at end of enum.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/lib/lib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/lib/lib.h b/pkgtools/pkg_install/files/lib/lib.h index 37f29d853a9..b07727e07b6 100644 --- a/pkgtools/pkg_install/files/lib/lib.h +++ b/pkgtools/pkg_install/files/lib/lib.h @@ -1,4 +1,4 @@ -/* $NetBSD: lib.h,v 1.12 2004/11/02 00:10:15 erh Exp $ */ +/* $NetBSD: lib.h,v 1.13 2004/11/20 06:42:12 grant Exp $ */ /* from FreeBSD Id: lib.h,v 1.25 1997/10/08 07:48:03 charnier Exp */ @@ -199,7 +199,7 @@ typedef enum bi_ent_t { BI_OS_VERSION, /* 1 */ BI_MACHINE_ARCH, /* 2 */ BI_IGNORE_RECOMMENDED, /* 3 */ - BI_ENUM_COUNT, /* 4 */ + BI_ENUM_COUNT /* 4 */ } bi_ent_t; /* Types */ |