diff options
author | Tom Tromey <tom@tromey.com> | 2025-01-11 11:54:50 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2025-01-11 11:54:50 -0700 |
commit | 4d7100dc04c44bee73ca6c45c69f6b20d89a67c8 (patch) | |
tree | b83978741785d6b1e40505bbdb2732477e787485 | |
parent | 4818a5c2b402b0a09d95e5bcbc84a5d85c29ec7c (diff) | |
download | binutils-4d7100dc04c44bee73ca6c45c69f6b20d89a67c8.zip binutils-4d7100dc04c44bee73ca6c45c69f6b20d89a67c8.tar.gz binutils-4d7100dc04c44bee73ca6c45c69f6b20d89a67c8.tar.bz2 |
Update comment in linespec.c
I belatedly realized I had forgotten to update a bool-related comment
in linespec.c. This patch fixes the oversight.
-rw-r--r-- | gdb/linespec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linespec.c b/gdb/linespec.c index b58b4ce..e0e3e97 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -179,7 +179,7 @@ struct linespec_state decode_line_full. */ bool funfirstline; - /* Nonzero if we are running in 'list' mode; see decode_line_list. */ + /* True if we are running in 'list' mode; see decode_line_list. */ bool list_mode; /* The 'canonical' value passed to decode_line_full, or NULL. */ |