Commit 2bf37a60 authored by Rusty Russell's avatar Rusty Russell

altstack: fix _info test.

Since we use -Wundef by default, ccanlint gets upset if __X86_64__ isn't set.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 60814843
...@@ -123,7 +123,7 @@ int main(int argc, char *argv[]) ...@@ -123,7 +123,7 @@ int main(int argc, char *argv[])
return 0; return 0;
if (strcmp(argv[1], "ported") == 0) { if (strcmp(argv[1], "ported") == 0) {
#if __x86_64__ #ifdef __x86_64__
printf("1\n"); printf("1\n");
#else #else
printf("0\n"); printf("0\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment