Fix apparent typo in ARM 32-on-64 code

The architecture is aarch64, not arch64.

Fixes: 750584c207 ("Make 64-on-32 maybe work on x86_64.")
Signed-off-by: dann frazier <dann.frazier@canonical.com>
Upstream-commit-id: e9f67aaa75a
This commit is contained in:
dann frazier 2019-01-14 15:25:11 -07:00 committed by Peter Jones
parent 3d04aef8d8
commit d5b72b322d

2
shim.c
View File

@ -150,7 +150,7 @@ allow_32_bit(void)
#endif
#elif defined(__i386__) || defined(__i686__)
return 1;
#elif defined(__arch64__)
#elif defined(__aarch64__)
return 0;
#else /* assuming everything else is 32-bit... */
return 1;