| Summary: | gaim-extprefs not 64 bit pure. | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Ian Kumlien <ian.kumlien> |
| Component: | Current packages | Assignee: | Gaim Bugs Crew <gaim-bugs> |
| Status: | RESOLVED FIXED | ||
| Severity: | blocker | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | AMD64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
| Attachments: | Now you can actually compile it. | ||
Created attachment 60329 [details, diff]
Now you can actually compile it.
I also add some casts to remove warnings.
(Note this also fixes the broken makefile)
Thanks for your patch, its in version 0.4-r1 |
- if (gaim_prefs_get_bool(pref_blist_autohide) && (gboolean)data == TRUE) { + if (gaim_prefs_get_bool(pref_blist_autohide) && data != NULL) { Where data is void* data... Reproducible: Always Steps to Reproduce: 1. 2. 3. I'll try to attach a untested patch.