Displaying 1 result from an estimated 1 matches for "lpi32".
Did you mean:
pi32
2006 May 22
3
[Bug 1192] warning: comparison between signed and unsigned
...2: warning: comparison between signed and unsigned
scp.c:639: warning: comparison between signed and unsigned
the problem is that off_t is defined signed (long long for OpenBSD and
long int for linux/amd64), while size_t is unsigned (unsigned long for
OpenBSD and long unsigned int for Linux).
for LPI32 architectures (like i386), the expansion from unsigned long
(4 bytes) to long long (8 bytes) is safe, but no so for LP64
architectures (like amd64) where "long long" and "unsigned long" are 8
bytes wide.
------- You are receiving this mail because: -------
You are the assign...