1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-05-13 15:13:36 +00:00

mountlist: Fix compilation error on Haiku (regr. 2025-11-18).

* lib/mountlist.c (read_file_system_list): Declare a variable before the
'for' loop.
This commit is contained in:
Bruno Haible
2026-01-01 14:06:42 +01:00
parent 23462c65bf
commit a1883a2c88
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2026-01-01 Bruno Haible <bruno@clisp.org>
mountlist: Fix compilation error on Haiku (regr. 2025-11-18).
* lib/mountlist.c (read_file_system_list): Declare a variable before the
'for' loop.
2025-12-31 Collin Funk <collin.funk1@gmail.com>
getprogname: Fix missing declaration on QNX.

View File

@@ -1,6 +1,6 @@
/* mountlist.c -- return a list of mounted file systems
Copyright (C) 1991-1992, 1997-2025 Free Software Foundation, Inc.
Copyright (C) 1991-1992, 1997-2026 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -717,7 +717,8 @@ read_file_system_list (bool need_fs_type)
if (fs_stat_dev (dev, &fi) >= 0)
{
/* Note: fi.dev == dev. */
for (struct rootdir_entry *re = rootdir_list; re; re = re->next)
struct rootdir_entry *re;
for (re = rootdir_list; re; re = re->next)
if (re->dev == fi.dev && re->ino == fi.root)
break;