* lib/fts.c (find_matching_ancestor): Pacify -Wuseless-cast via compound
literals.
+2026-08-09 Collin Funk <collin.funk1@gmail.com>
+
+ fts: Pacify -Wuseless-cast warnings when GNULIB_FTS_DEBUG is defined.
+ * lib/fts.c (find_matching_ancestor): Pacify -Wuseless-cast via compound
+ literals.
+
2026-08-09 Bruno Haible <bruno@clisp.org>
bootstrap: Fix error "client sha256; server sha1" seen by some users.
ent = ent->fts_parent)
printf (" %s(%"PRIuMAX"/%"PRIuMAX") to %s(%"PRIuMAX"/%"PRIuMAX")...\n",
ad->fts_ent->fts_accpath,
- (uintmax_t) ad->dev,
- (uintmax_t) ad->ino,
+ (uintmax_t) {ad->dev},
+ (uintmax_t) {ad->ino},
ent->fts_accpath,
- (uintmax_t) ent->fts_statp->st_dev,
- (uintmax_t) ent->fts_statp->st_ino);
+ (uintmax_t) {ent->fts_statp->st_dev},
+ (uintmax_t) {ent->fts_statp->st_ino});
}
void