diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2024-07-26 21:20:50 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2024-08-01 14:30:21 +0100 |
commit | e1a8c74214d3f5a75fcf03f5dd4550ecd2085d32 (patch) | |
tree | dcf44fd89c894c05f8877fdbc44a92d12798403f | |
parent | b964314b292aa4378a555864b22517fd55049246 (diff) | |
download | gdb-e1a8c74214d3f5a75fcf03f5dd4550ecd2085d32.zip gdb-e1a8c74214d3f5a75fcf03f5dd4550ecd2085d32.tar.gz gdb-e1a8c74214d3f5a75fcf03f5dd4550ecd2085d32.tar.bz2 |
include, libctf: improve ECTF_DUPLICATE error message
It applies to enums now, so it should mention them.
include/
* ctf-api.h (_CTF_ERRORS) ECTF_DUPLICATE]: Mention enums.
-rw-r--r-- | include/ctf-api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ctf-api.h b/include/ctf-api.h index ad5add2..d3d8dbf 100644 --- a/include/ctf-api.h +++ b/include/ctf-api.h @@ -225,7 +225,7 @@ typedef struct ctf_snapshot_id _CTF_ITEM (ECTF_RDONLY, "CTF container is read-only.") \ _CTF_ITEM (ECTF_DTFULL, "CTF type is full (no more members allowed).") \ _CTF_ITEM (ECTF_FULL, "CTF container is full.") \ - _CTF_ITEM (ECTF_DUPLICATE, "Duplicate member or variable name.") \ + _CTF_ITEM (ECTF_DUPLICATE, "Duplicate member, enumerator, or variable name.") \ _CTF_ITEM (ECTF_CONFLICT, "Conflicting type is already defined.") \ _CTF_ITEM (ECTF_OVERROLLBACK, "Attempt to roll back past a ctf_update.") \ _CTF_ITEM (ECTF_COMPRESS, "Failed to compress CTF data.") \ |