diff options
author | bde <bde@FreeBSD.org> | 1997-03-19 01:54:04 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-19 01:54:04 +0000 |
commit | 09f52e0fae029c58e62db2d717ff4a60b1513ec5 (patch) | |
tree | afbc51ea78cf189b61d4aaf13d14b59f02aa044f /lib/libdisk | |
parent | 2cbd96a8735a3a1e563a802828f6744b0494e89c (diff) | |
download | FreeBSD-src-09f52e0fae029c58e62db2d717ff4a60b1513ec5.zip FreeBSD-src-09f52e0fae029c58e62db2d717ff4a60b1513ec5.tar.gz |
Fixed this header to compile with gcc -pedantic -Werror (removed comma
at end of enum).
Diffstat (limited to 'lib/libdisk')
-rw-r--r-- | lib/libdisk/libdisk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libdisk/libdisk.h b/lib/libdisk/libdisk.h index d78a646..b8c724e 100644 --- a/lib/libdisk/libdisk.h +++ b/lib/libdisk/libdisk.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * -* $Id$ +* $Id: libdisk.h,v 1.26 1997/02/22 15:06:35 peter Exp $ * */ @@ -20,7 +20,7 @@ typedef enum { freebsd, extended, part, - unused, + unused } chunk_e; __BEGIN_DECLS |