diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 11:53:15 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | d0b1020bf1f9f0e3824d61cd3821e3ea7773f828 (patch) | |
tree | f179b275ca3e0d104e84a8009c8a73fcfdd4b53e /gdb/utils.h | |
parent | 6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a (diff) | |
download | gdb-d0b1020bf1f9f0e3824d61cd3821e3ea7773f828.zip gdb-d0b1020bf1f9f0e3824d61cd3821e3ea7773f828.tar.gz gdb-d0b1020bf1f9f0e3824d61cd3821e3ea7773f828.tar.bz2 |
Rename print_spaces_filtered
print_spaces_filtered is now misnamed, because whether filtering
happens is up to the stream. So, rename it.
Diffstat (limited to 'gdb/utils.h')
-rw-r--r-- | gdb/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/utils.h b/gdb/utils.h index 79f53c4..981090e 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -255,7 +255,7 @@ extern void gdb_printf (const char *, ...) ATTRIBUTE_PRINTF (1, 2); extern void printf_unfiltered (const char *, ...) ATTRIBUTE_PRINTF (1, 2); -extern void print_spaces_filtered (int, struct ui_file *); +extern void print_spaces (int, struct ui_file *); extern const char *n_spaces (int); |