summaryrefslogtreecommitdiff
path: root/srcs/decrypt_migrated_wgt.c
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/decrypt_migrated_wgt.c')
-rw-r--r--srcs/decrypt_migrated_wgt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/srcs/decrypt_migrated_wgt.c b/srcs/decrypt_migrated_wgt.c
index 4eae90b..6dbc627 100644
--- a/srcs/decrypt_migrated_wgt.c
+++ b/srcs/decrypt_migrated_wgt.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2016 - 2019 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -68,7 +68,7 @@ static int _get_old_duk(const char *pkg_id, raw_buffer_s **pduk)
*pduk = duk;
- WAE_SLOGD("get old duk of length: %d", duk->size);
+ WAE_SLOGD("get old duk of length: %zu", duk->size);
return WAE_ERROR_NONE;
}
@@ -91,7 +91,7 @@ static int _get_old_iv(const raw_buffer_s *src, raw_buffer_s **piv)
iv->size = _size;
*piv = iv;
- WAE_SLOGD("get old iv of length: %d", iv->size);
+ WAE_SLOGD("get old iv of length: %zu", iv->size);
return WAE_ERROR_NONE;
}