|
| From: | Paolo Bonzini |
| Subject: | Re: [PATCH v6 4/7] cutils: Introduce bundle mechanism |
| Date: | Wed, 15 Jun 2022 21:26:52 +0200 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.10.0 |
On 6/15/22 17:56, Akihiko Odaki wrote:
+void list_bundle_candidates(const char *path)
+{
+ const char *dir = qemu_get_exec_dir();
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(bundle_formats); i++) {
+ printf(bundle_formats[i], dir, path);
+ putc('\n', stdout);
+ }
This is not bisectable, bundle_formats[] doesn't exist here. Paolo
| [Prev in Thread] | Current Thread | [Next in Thread] |