commit | 4e37953bc945549a704884d7d5250f01d9d01bfc | [log] [tgz] |
---|---|---|
author | Captain Throwback <captainthrowback@hotmail.com> | Fri Jun 05 20:42:16 2020 -0400 |
committer | bigbiff <bigbiff@teamw.in> | Sun Jun 07 00:53:14 2020 +0000 |
tree | 40d54f726b0f243eb21a5cef7cd98f865be90bb2 | |
parent | e0e43403b9bdd9261e733aa0448d7689a9f23ced [diff] [blame] |
Fix build in 5.1 tree. to_string doesn't exist in bionic in 5.1. Change-Id: If10b76f7a2b695c4be470812e048c66f5920d798
diff --git a/twrp.cpp b/twrp.cpp index cf519bb..37053d2 100755 --- a/twrp.cpp +++ b/twrp.cpp
@@ -45,7 +45,7 @@ #include "partitions.hpp" #ifdef USE_OLD_BASE_INCLUDE -#include <base/strings.h> +#include <strings.h> #else #include <android-base/strings.h> #endif