|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] 13120:3e2d3d737624 breaks Solaris compile
The changes to xentop.c:
- vwprintw(stdscr, (char *)fmt, args);
+ vwprintw(stdscr, (const char *)fmt, args);
- addstr((char *)str);
+ addstr((const char *)str);
Are both unneccessary on Linux (as they're const char * already), and
broken on Solaris, where we have rather unfortunate prototypes from
pre-history that aren't constified. I think these need to be reverted
back to being the meaningful '(char *)'.
regards,
john
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] 13120:3e2d3d737624 breaks Solaris compile,
John Levon <=
|
|
|
|
|