Use #ifndef __NO_STRICT_ALIGNMENT rather than

#if !defined(__i386__) && !defined(__amd64__) for architectures
with alignment constraints.
This commit is contained in:
Pyun YongHyeon 2006-11-21 04:11:31 +00:00
parent 852bc770e3
commit 73bb8603b3

View File

@ -637,7 +637,7 @@ struct rl_stats {
* due to the 8139C+. We need to put the number of descriptors in the ring
* structure and use that value instead.
*/
#if !defined(__i386__) && !defined(__amd64__)
#ifndef __NO_STRICT_ALIGNMENT
#define RE_FIXUP_RX 1
#endif