Many files:
Update for 1.17 release.
diff --git a/lib/ChangeLog b/lib/ChangeLog
index dcabd57..e4ea0aa 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+1999-10-26 <tytso@valinux.com>
+
+ * Release of E2fsprogs 1.17
+
1999-10-22 <tytso@valinux.com>
* Release of E2fsprogs 1.16
diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog
index 02dad9f..66c754d 100644
--- a/lib/e2p/ChangeLog
+++ b/lib/e2p/ChangeLog
@@ -1,5 +1,9 @@
1999-10-26 <tytso@valinux.com>
+ * Release of E2fsprogs 1.17
+
+1999-10-26 <tytso@valinux.com>
+
* feature.c: Fix GCC warnings; add const to the char * types in
the function prototypes for e2p_feature2string and
e2p_edit_feature.
diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog
index 549d7e4..d74542f 100644
--- a/lib/et/ChangeLog
+++ b/lib/et/ChangeLog
@@ -1,3 +1,7 @@
+1999-10-26 <tytso@valinux.com>
+
+ * Release of E2fsprogs 1.17
+
1999-10-22 <tytso@valinux.com>
* Release of E2fsprogs 1.16
diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog
index d3d3209..7eb4bba 100644
--- a/lib/ext2fs/ChangeLog
+++ b/lib/ext2fs/ChangeLog
@@ -1,5 +1,9 @@
1999-10-26 <tytso@valinux.com>
+ * Release of E2fsprogs 1.17
+
+1999-10-26 <tytso@valinux.com>
+
* ext2fs.h: Add kludge to deal with the fact that egcs cpp doesn't
seem to handle ~0UL the same way as they used to.
diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h
index ddf264c..aef2a7c 100644
--- a/lib/ext2fs/ext2fs.h
+++ b/lib/ext2fs/ext2fs.h
@@ -46,7 +46,7 @@
#else
#include <asm/types.h>
#if defined(__GNUC__) && defined(__STRICT_ANSI__) && \
- ((~0UL) == 0xffffffff) || defined(__i386__)
+ (((~0UL) == 0xffffffff) || defined(__i386__))
typedef __signed__ long long __s64;
typedef unsigned long long __u64;
#endif
diff --git a/lib/ss/ChangeLog b/lib/ss/ChangeLog
index 4921ec3..0dfbf3a 100644
--- a/lib/ss/ChangeLog
+++ b/lib/ss/ChangeLog
@@ -1,3 +1,7 @@
+1999-10-26 <tytso@valinux.com>
+
+ * Release of E2fsprogs 1.17
+
1999-10-22 <tytso@valinux.com>
* Release of E2fsprogs 1.16
diff --git a/lib/uuid/ChangeLog b/lib/uuid/ChangeLog
index 858bb54..55331ff 100644
--- a/lib/uuid/ChangeLog
+++ b/lib/uuid/ChangeLog
@@ -1,5 +1,9 @@
1999-10-26 <tytso@valinux.com>
+ * Release of E2fsprogs 1.17
+
+1999-10-26 <tytso@valinux.com>
+
* uuid_time.c (variant_string): Declare to be static to avoid gcc
warnings.