diff options
author | Dmitriy Ivanov <dimitry@google.com> | 2015-04-06 19:05:58 -0700 |
---|---|---|
committer | Dmitriy Ivanov <dimitry@google.com> | 2015-04-06 19:05:58 -0700 |
commit | 1dce3ed24940808a553f4da1a92a9b6759efd4ab (patch) | |
tree | 736d4b68165f00e2ca60a1eb4de086d5340cb138 /tests | |
parent | 8a1007dbababa6c4812c267ca9119cf0765afc3f (diff) | |
download | bionic-1dce3ed24940808a553f4da1a92a9b6759efd4ab.zip bionic-1dce3ed24940808a553f4da1a92a9b6759efd4ab.tar.gz bionic-1dce3ed24940808a553f4da1a92a9b6759efd4ab.tar.bz2 |
Fix x86_64 build
Change-Id: Id81c059bf3ecdb9cc84d04d16ffda34baaadc5a1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.h b/tests/utils.h index bad5d89..fd012a3 100644 --- a/tests/utils.h +++ b/tests/utils.h @@ -52,7 +52,7 @@ class Maps { char line[BUFSIZ]; while (fgets(line, sizeof(line), fp) != nullptr) { map_record record; - dev_t dev_major, dev_minor; + uint32_t dev_major, dev_minor; char pathstr[BUFSIZ]; char prot[5]; // sizeof("rwxp") if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %4s %" SCNxPTR " %x:%x %lu %s", |