From: Lukas Durfina <ldurfina@tachyum.com>
To: <gdb-patches@sourceware.org>
Subject: [PATCH 2/2] gdb: Fix a type of sentinel
Date: Tue, 28 Jan 2020 15:05:00 -0000 [thread overview]
Message-ID: <20200128142830.89282-2-ldurfina@tachyum.com> (raw)
In-Reply-To: <20200128142830.89282-1-ldurfina@tachyum.com>
---
gdb/ChangeLog | 4 ++++
gdb/charset.c | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8b6da62bd4..1dd89ae2e0 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2020-01-28 Lukas Durfina <ldurfina@tachyum.com>
+
+ * charset.c (find_charset_names): Fix a type of sentinel.
+
2020-01-26 Tom Tromey <tom@tromey.com>
* ctfread.c (struct ctf_fp_info): Reindent.
diff --git a/gdb/charset.c b/gdb/charset.c
index 5cfd2d8030..abf795ce6d 100644
--- a/gdb/charset.c
+++ b/gdb/charset.c
@@ -818,7 +818,7 @@ find_charset_names (void)
{
std::string iconv_dir = relocate_gdb_directory (ICONV_BIN,
ICONV_BIN_RELOCATABLE);
- iconv_program = concat (iconv_dir.c_str(), SLASH_STRING, "iconv", NULL);
+ iconv_program = concat (iconv_dir.c_str(), SLASH_STRING, "iconv", (char *) NULL);
}
#else
iconv_program = xstrdup ("iconv");
--
2.17.1
next prev parent reply other threads:[~2020-01-28 14:28 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-28 14:28 [PATCH 1/2] gdbsupport: " Lukas Durfina
2020-01-28 15:05 ` Lukas Durfina [this message]
2020-01-28 16:53 ` [PATCH 2/2] gdb: " Simon Marchi
2020-01-28 17:13 ` Aktemur, Tankut Baris
2020-01-30 14:52 ` Lukas Durfina
2020-01-28 16:44 ` [PATCH 1/2] gdbsupport: " Simon Marchi
2020-01-31 10:09 ` Tom Tromey
2020-01-31 18:37 ` Simon Marchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200128142830.89282-2-ldurfina@tachyum.com \
--to=ldurfina@tachyum.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox