Skip to content
Snippets Groups Projects
Commit 93c54caa authored by Ian Lance Taylor's avatar Ian Lance Taylor
Browse files

libbacktrace: add cast to avoid warning

	* print.c (print_syminfo_callback): Add cast to avoid warning.
parent 144b6099
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ static void print_syminfo_callback (void *data, uintptr_t pc,
fprintf (pdata->f, "0x%lx ???\n\t%s+0x%lx:0\n",
(unsigned long) pc,
symname,
pc - symval);
(unsigned long) (pc - symval));
}
/* Print one level of a backtrace. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment