From 70225aabb72fdf5464109fb2707e150033c5d550 Mon Sep 17 00:00:00 2001 From: Maxim Sobolev Date: Mon, 3 Jun 2002 19:04:10 +0000 Subject: [PATCH] Correct bswap64() prototype. Submitted by: glewis MFC after: 1 day (assuming that there is re's approval) --- lib/libstand/stand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h index c4b1fae21a82..470d60b0cb49 100644 --- a/lib/libstand/stand.h +++ b/lib/libstand/stand.h @@ -342,7 +342,7 @@ static __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); } /* swaps (undocumented, useful?) */ #ifdef __i386__ extern u_int32_t bswap32(u_int32_t x); -extern u_int64_t bswap64(u_int32_t x); +extern u_int64_t bswap64(u_int64_t x); #endif /* null functions for device/filesystem switches (undocumented) */