added building for amd64 in addition to for the BBB
diff --git a/aos/common/logging/logging_impl_test.cc b/aos/common/logging/logging_impl_test.cc
index faaf1cd..58b7b00 100644
--- a/aos/common/logging/logging_impl_test.cc
+++ b/aos/common/logging/logging_impl_test.cc
@@ -159,7 +159,7 @@
}
time::Time end = time::Time::Now();
time::Time diff = end - start;
- printf("short message took %lld nsec for %ld\n",
+ printf("short message took %" PRId64 " nsec for %ld\n",
diff.ToNSec(), kTimingCycles);
start = time::Time::Now();
@@ -168,7 +168,7 @@
}
end = time::Time::Now();
diff = end - start;
- printf("long message took %lld nsec for %ld\n",
+ printf("long message took %" PRId64 " nsec for %ld\n",
diff.ToNSec(), kTimingCycles);
}