summaryrefslogtreecommitdiffstats
path: root/cmds/atrace
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2014-03-12 13:12:44 -0700
committerMark Salyzyn <salyzyn@google.com>2014-03-12 13:12:44 -0700
commit92dc3fc52cf097bd105460cf377779bdcf146d62 (patch)
treeaa1c6a8230541a45e941eb4c459b19b8487e08d3 /cmds/atrace
parent06ed9491418ce84e4272bf4201545fa6cfe3932e (diff)
downloadframeworks_native-92dc3fc52cf097bd105460cf377779bdcf146d62.zip
frameworks_native-92dc3fc52cf097bd105460cf377779bdcf146d62.tar.gz
frameworks_native-92dc3fc52cf097bd105460cf377779bdcf146d62.tar.bz2
native frameworks: 64-bit compile issues
- Fix format (print/scanf) - Suppress unused argument warning messages (bonus) Change-Id: I05c7724d2aba6da1e82a86000e11f3a8fef4e728
Diffstat (limited to 'cmds/atrace')
-rw-r--r--cmds/atrace/atrace.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmds/atrace/atrace.cpp b/cmds/atrace/atrace.cpp
index b500a6b..34dc9fe 100644
--- a/cmds/atrace/atrace.cpp
+++ b/cmds/atrace/atrace.cpp
@@ -17,6 +17,7 @@
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
+#include <inttypes.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
@@ -368,7 +369,7 @@ static bool pokeBinderServices()
static bool setTagsProperty(uint64_t tags)
{
char buf[64];
- snprintf(buf, 64, "%#llx", tags);
+ snprintf(buf, 64, "%#" PRIx64, tags);
if (property_set(k_traceTagsProperty, buf) < 0) {
fprintf(stderr, "error setting trace tags system property\n");
return false;
@@ -665,7 +666,7 @@ static void dumpTrace()
close(traceFD);
}
-static void handleSignal(int signo)
+static void handleSignal(int /*signo*/)
{
if (!g_nohup) {
g_traceAborted = true;