From 4d58838ef11f164439c0fb515f95c4cca787abb1 Mon Sep 17 00:00:00 2001 From: Julius Trinkunas Date: Wed, 22 Jul 2015 18:33:51 +0300 Subject: [PATCH] Add text for 0xe800801c error. --- src/errors.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/errors.h b/src/errors.h index 4cdebec..b3b4815 100644 --- a/src/errors.h +++ b/src/errors.h @@ -171,6 +171,7 @@ static errorcode_to_id_t errorcode_to_id[] = { // Errors without id->string mapping. { 0xe8008015, "A valid provisioning profile for this executable was not found."}, { 0xe8008019, "The application does not have a valid signature." }, + { 0xe800801c, "No code signature found." }, }; const int errorcode_to_id_count = sizeof(errorcode_to_id) / sizeof(errorcode_to_id_t);