* linux-thread-db.c (thread_db_get_thread_local_address): Fix type

mismatch.
	* tui/tui-stack.c (tui_show_frame_info): Likewise.
This commit is contained in:
Thiemo Seufer 2006-08-02 10:24:00 +00:00
parent 172553c733
commit 8717790563
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-08-02 Thiemo Seufer <ths@mips.com>
* linux-thread-db.c (thread_db_get_thread_local_address): Fix type
mismatch.
* tui/tui-stack.c (tui_show_frame_info): Likewise.
2006-08-01 Daniel Jacobowitz <dan@codesourcery.com>
* c-exp.y (type): Remove incorrect pointer to member case.

View file

@ -1080,7 +1080,8 @@ thread_db_get_thread_local_address (ptid_t ptid,
thread_db_map_id2thr (thread_info, 1);
/* Finally, get the address of the variable. */
err = td_thr_tls_get_addr_p (&thread_info->private->th, (void *) lm,
err = td_thr_tls_get_addr_p (&thread_info->private->th,
(void *)(size_t) lm,
offset, &address);
#ifdef THREAD_DB_HAS_TD_NOTALLOC

View file

@ -356,7 +356,7 @@ tui_show_frame_info (struct frame_info *fi)
else
{
if (find_pc_partial_function (get_frame_pc (fi), (char **) NULL,
&low, (CORE_ADDR) NULL) == 0)
&low, (CORE_ADDR) 0) == 0)
error (_("No function contains program counter for selected frame."));
else
low = tui_get_low_disassembly_address (low, get_frame_pc (fi));