Commit 4e8ab8d44c137fcb954f800c220d84a1568101d0
1 parent
c28dbb00
Exists in
master
and in
5 other branches
Corrigindo erro ao compilar para windows 64
Showing
3 changed files
with
4 additions
and
4 deletions
Show diff stats
src/plugins/rx3270/pluginmain.cc
| ... | ... | @@ -66,7 +66,7 @@ |
| 66 | 66 | plugin(H3270 *hSession); |
| 67 | 67 | virtual ~plugin(); |
| 68 | 68 | |
| 69 | - void free(char *ptr); | |
| 69 | + void free(void *ptr); | |
| 70 | 70 | |
| 71 | 71 | char * get_version(void); |
| 72 | 72 | LIB3270_CSTATE get_cstate(void); |
| ... | ... | @@ -280,7 +280,7 @@ |
| 280 | 280 | return gtk_clipboard_wait_for_text(gtk_widget_get_clipboard(pw3270_get_toplevel(),GDK_SELECTION_CLIPBOARD)); |
| 281 | 281 | } |
| 282 | 282 | |
| 283 | - void plugin::free(char *ptr) | |
| 283 | + void plugin::free(void *ptr) | |
| 284 | 284 | { |
| 285 | 285 | g_free(ptr); |
| 286 | 286 | } | ... | ... |
src/plugins/rx3270/rx3270.cc