diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-10-22 12:13:19 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-10-22 12:13:19 -0400 |
commit | db0f0d0c1d0541b6c2f81d655cd5420e059c91d4 (patch) | |
tree | fb6951cab800af25ad692a466e8c0d796c725054 /gdb/python | |
parent | fb70bc1a74d371cc6cc07e018df436a17c26037e (diff) | |
download | binutils-db0f0d0c1d0541b6c2f81d655cd5420e059c91d4.zip binutils-db0f0d0c1d0541b6c2f81d655cd5420e059c91d4.tar.gz binutils-db0f0d0c1d0541b6c2f81d655cd5420e059c91d4.tar.bz2 |
Add cast in python.c
gdb/ChangeLog:
* python/python.c (_initialize_python): Add cast.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index 1c2d5c6..6cbe5f0 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1725,7 +1725,7 @@ message == an error message without a stack will be printed."), fprintf (stderr, "Could not convert python path to string\n"); return; } - progname_copy = PyMem_Malloc ((progsize + 1) * sizeof (wchar_t)); + progname_copy = (wchar_t *) PyMem_Malloc ((progsize + 1) * sizeof (wchar_t)); if (!progname_copy) { fprintf (stderr, "out of memory\n"); |