forked from mirror/openwrt
Fix trivial compilation warning caused by downstream full print patch.
../src/app_list.c: In function 'print_full':
../src/app_list.c:85:35: warning: format '%zu' expects argument of type 'size_t', but argument 2 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=]
85 | printf("Installed-Size: %zu\n", pkg->installed_size);
| ~~^ ~~~~~~~~~~~~~~~~~~~
| | |
| | uint64_t {aka long long unsigned int}
| unsigned int
| %llu
../src/app_list.c:86:25: warning: format '%zu' expects argument of type 'size_t', but argument 2 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=]
86 | printf("Size: %zu\n", pkg->size);
| ~~^ ~~~~~~~~~
| | |
| | uint64_t {aka long long unsigned int}
| unsigned int
| %llu
../src/app_list.c:58:31: warning: unused variable 'd' [-Wunused-variable]
58 | struct apk_dependency d;
Remove unused variable and use PRIu64 to handle uint64_t type.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
21 lines
667 B
Diff
21 lines
667 B
Diff
From 9918c683fcc2f148328332d58d030ec5750a1473 Mon Sep 17 00:00:00 2001
|
|
From: Paul Spooren <mail@aparcar.org>
|
|
Date: Sat, 19 Feb 2022 17:20:37 +0100
|
|
Subject: [PATCH 1/4] openwrt: move layer db to temp folder
|
|
|
|
Signed-off-by: Paul Spooren <mail@aparcar.org>
|
|
---
|
|
src/database.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/src/database.c
|
|
+++ b/src/database.c
|
|
@@ -1856,7 +1856,7 @@ const char *apk_db_layer_name(int layer)
|
|
{
|
|
switch (layer) {
|
|
case APK_DB_LAYER_ROOT: return "lib/apk/db";
|
|
- case APK_DB_LAYER_UVOL: return "lib/apk/db-uvol";
|
|
+ case APK_DB_LAYER_UVOL: return "tmp/run/uvol/.meta/apk";
|
|
default:
|
|
assert(!"invalid layer");
|
|
return 0;
|