This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Hurd".
The branch, master has been updated
via 831ded1c65659078397218a5a61fbc1ee72079ef (commit)
from 3547c23a46cfcb045afb0a915371ef5946066ef2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 831ded1c65659078397218a5a61fbc1ee72079ef
Author: Diego Nieto Cid <[email protected]>
Date: Sun Sep 28 00:39:13 2025 +0100
libstore: fix warning due to ignoring asprintf result
../../libstore/unknown.c: In function 'store_unknown_decode':
../../libstore/unknown.c:130:5: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
130 | asprintf (&(*store)->name, "notype:%.*s",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
131 | (int) (us->data_len - us->cur_data), us->data +
us->cur_data);
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../libstore/unknown.c:133:5: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
133 | asprintf (&(*store)->name, "type-%d:%.*s",
enc->ints[enc->cur_int],
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
134 | (int) ( us->data_len - us->cur_data), us->data +
us->cur_data);
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
===============================================================================
../../libstore/nbd.c: In function 'store_nbd_open':
../../libstore/nbd.c:522:13: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
522 | asprintf (&(*store)->name, "%s%s", url_prefix,
name);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message-ID: <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
libstore/nbd.c | 6 +++++-
libstore/unknown.c | 7 +++++--
2 files changed, 10 insertions(+), 3 deletions(-)
hooks/post-receive
--
Hurd