From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2103) id 7BE0F3849AE9; Fri, 19 Apr 2024 15:51:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7BE0F3849AE9 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1713541894; bh=+T+ELsnommiK1q0hlz8/0ZmNIhfWyRgSEkQu1UcNNKE=; h=From:To:Subject:Date:From; b=arukWJIQCoqEkDarc2bW3fQpzbDLe5hjavsd+O2z2nvDGmJvV9FbhW/eXoq5L8fPG 1J2WzWAEtGA53te+esTM7dlBGRqP5OjI1bo0oFCcEXENvLrXQxGmukMDVCcP8c/o7A wYrHLGaUpsSZNUjVOFRNYKtORLoe9Jj50HfPTWZE= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Nick Alcock To: binutils-cvs@sourceware.org Subject: [binutils-gdb] libctf: fix a comment typo X-Act-Checkin: binutils-gdb X-Git-Author: Nick Alcock X-Git-Refname: refs/heads/master X-Git-Oldrev: 4fa4e3d92ac3940305b4521aef3e58555a4aa4b5 X-Git-Newrev: bb2a9a465e02e8cee00736351d10bde914f50758 Message-Id: <20240419155134.7BE0F3849AE9@sourceware.org> Date: Fri, 19 Apr 2024 15:51:34 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dbb2a9a465e02= e8cee00736351d10bde914f50758 commit bb2a9a465e02e8cee00736351d10bde914f50758 Author: Nick Alcock Date: Fri Jan 5 11:12:37 2024 +0000 libctf: fix a comment typo =20 ctf_update has been called ctf_serialize for years now. =20 libctf/ =20 * ctf-impl.h: Fix comment typo. Diff: --- libctf/ctf-impl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libctf/ctf-impl.h b/libctf/ctf-impl.h index dc57d6f64c7..b7123317c98 100644 --- a/libctf/ctf-impl.h +++ b/libctf/ctf-impl.h @@ -199,13 +199,13 @@ typedef struct ctf_err_warning } ctf_err_warning_t; =20 /* Atoms associate strings with a list of the CTF items that reference that - string, so that ctf_update() can instantiate all the strings using the + string, so that ctf_serialize() can instantiate all the strings using t= he ctf_str_atoms and then reassociate them with the real string later. =20 Strings can be interned into ctf_str_atom without having refs associated with them, for values that are returned to callers, etc. Items are only - removed from this table on ctf_close(), but on every ctf_update(), all = the - csa_refs in all entries are purged. */ + removed from this table on ctf_close(), but on every ctf_serialize(), a= ll + the csa_refs in all entries are purged. */ =20 typedef struct ctf_str_atom {