summaryrefslogtreecommitdiffstats
path: root/lib/libarchive/archive_private.h
diff options
context:
space:
mode:
authorkientzle <kientzle@FreeBSD.org>2007-04-02 00:15:45 +0000
committerkientzle <kientzle@FreeBSD.org>2007-04-02 00:15:45 +0000
commitc25369d5e8a76c5bc6c46b1a3e8da2b802a28f66 (patch)
tree16546b5223598a0ecf53ce3bf489fbbd482999af /lib/libarchive/archive_private.h
parent53ce615be372500a481f1120f7b90af9cfd85adb (diff)
downloadFreeBSD-src-c25369d5e8a76c5bc6c46b1a3e8da2b802a28f66.zip
FreeBSD-src-c25369d5e8a76c5bc6c46b1a3e8da2b802a28f66.tar.gz
Style: bare "unsigned" is deprecated, use "unsigned int" instead.
Thanks to: Joerg Sonnenberger
Diffstat (limited to 'lib/libarchive/archive_private.h')
-rw-r--r--lib/libarchive/archive_private.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libarchive/archive_private.h b/lib/libarchive/archive_private.h
index a6b7fd6..a75489d 100644
--- a/lib/libarchive/archive_private.h
+++ b/lib/libarchive/archive_private.h
@@ -63,8 +63,8 @@ struct archive {
* ridiculous time, or the client passes us an invalid
* pointer, these values allow me to catch that.
*/
- unsigned magic;
- unsigned state;
+ unsigned int magic;
+ unsigned int state;
/*
* Some public API functions depend on the "real" type of the
@@ -89,8 +89,8 @@ struct archive {
};
/* Check magic value and state; exit if it isn't valid. */
-void __archive_check_magic(struct archive *, unsigned magic,
- unsigned state, const char *func);
+void __archive_check_magic(struct archive *, unsigned int magic,
+ unsigned int state, const char *func);
void __archive_errx(int retvalue, const char *msg);
OpenPOWER on IntegriCloud