diff options
author | Rosen Penev | 2020-12-23 17:21:03 -0800 |
---|---|---|
committer | Nikias Bassen | 2022-04-22 13:14:02 +0200 |
commit | 3de1317378cd6b2b9e747008f10dc386334a391a (patch) | |
tree | 3cc35d18d0a0c3bf680f9b00f4d2e6fd307fb294 /tools | |
parent | 5f382824398e088fdb68a4bd104613d58c4197f5 (diff) | |
download | libimobiledevice-3de1317378cd6b2b9e747008f10dc386334a391a.tar.gz libimobiledevice-3de1317378cd6b2b9e747008f10dc386334a391a.tar.bz2 |
[clang-tidy] use const pointer parameter
Found with readability-non-const-parameter
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ideviceprovision.c | 2 | ||||
-rw-r--r-- | tools/idevicesyslog.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/ideviceprovision.c b/tools/ideviceprovision.c index 1dee899..754b84d 100644 --- a/tools/ideviceprovision.c +++ b/tools/ideviceprovision.c @@ -106,7 +106,7 @@ static void asn1_next_item(unsigned char** p) } } -static size_t asn1_item_get_size(unsigned char* p) +static size_t asn1_item_get_size(const unsigned char* p) { size_t res = 0; char bsize = *(p+1); diff --git a/tools/idevicesyslog.c b/tools/idevicesyslog.c index 4eb1605..44dd5ba 100644 --- a/tools/idevicesyslog.c +++ b/tools/idevicesyslog.c @@ -119,7 +119,7 @@ static void add_filter(const char* filterstr) } } -static int find_char(char c, char** p, char* end) +static int find_char(char c, char** p, const char* end) { while ((**p != c) && (*p < end)) { (*p)++; |