1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-09 01:18:00 +03:00

qemu: Rename @main variable in qemuDomainRemoveLogs()

Older GCC fails to understand that 'char *main' is a variable and
not main() function. Rename the variable to appease old GCC.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Nikolay Shirokovskiy <nshirokovskiy@openvz.org>
This commit is contained in:
Michal Privoznik 2022-04-06 10:10:24 +02:00
parent 7940fe02d5
commit 9890eb0056

View File

@ -11828,7 +11828,7 @@ qemuDomainRemoveLogs(virQEMUDriver *driver,
{
g_autoptr(virQEMUDriverConfig) cfg = NULL;
g_autofree char *format = NULL;
g_autofree char *main = NULL;
g_autofree char *main_log = NULL;
g_autoptr(DIR) dir = NULL;
struct dirent *entry;
int rc;
@ -11840,13 +11840,13 @@ qemuDomainRemoveLogs(virQEMUDriver *driver,
if (virDirOpen(&dir, cfg->logDir) < 0)
return -1;
main = g_strdup_printf("%s.log", name);
main_log = g_strdup_printf("%s.log", name);
format = g_strdup_printf("%s.log.%%u", name);
while ((rc = virDirRead(dir, &entry, cfg->logDir)) > 0) {
unsigned int u;
if (STREQ(entry->d_name, main) ||
if (STREQ(entry->d_name, main_log) ||
sscanf(entry->d_name, format, &u) == 1) {
g_autofree char *path = NULL;