diff options
| author | 2014-11-07 16:28:19 -0800 | |
|---|---|---|
| committer | 2014-11-08 01:04:45 +0000 | |
| commit | ebee1379eaf4306eb2de9437844009aa7eb18c28 (patch) | |
| tree | 165544f1e460464e14c41e8b88f73107e1668494 /cmds/idmap/create.cpp | |
| parent | 487ae9b8dc3e08c1a830d519a801a07cd59c8f2b (diff) | |
Frameworks/base: Fix two warnings in cmds
Change-Id: Ifb9c7fb7a2d28c13010ddc186bea5f5f0daefb4a
Diffstat (limited to 'cmds/idmap/create.cpp')
| -rw-r--r-- | cmds/idmap/create.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/idmap/create.cpp b/cmds/idmap/create.cpp index 28da3d6d22eb..7a501a4ee497 100644 --- a/cmds/idmap/create.cpp +++ b/cmds/idmap/create.cpp @@ -78,7 +78,7 @@ fail: if (fstat(idmap_fd, &st) == -1) { return true; } - if (st.st_size < N) { + if (st.st_size < static_cast<off_t>(N)) { // file is empty or corrupt return true; } |