1
0
mirror of https://github.com/systemd/systemd synced 2024-07-03 08:29:25 +00:00

Merge pull request #33329 from poettering/varlink-idl-tweaks

varlink-idl: align continuation line character \
This commit is contained in:
Luca Boccassi 2024-06-15 01:18:37 +01:00 committed by GitHub
commit 05e69717fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View File

@ -516,7 +516,10 @@ static int varlink_idl_subparse_token(
l = token_match(*p, allowed_delimiters, allowed_chars);
if (l == 0)
return varlink_idl_log(SYNTHETIC_ERRNO(EBADMSG), "Couldn't find token of allowed chars '%s' or allowed delimiters '%s'.", strempty(allowed_chars), strempty(allowed_delimiters));
return varlink_idl_log(
SYNTHETIC_ERRNO(EBADMSG),
"%u:%u: Couldn't find token of allowed chars '%s' or allowed delimiters '%s'.",
*line, *column, strempty(allowed_chars), strempty(allowed_delimiters));
}
t = strndup(*p, l);