Skip to content
Snippets Groups Projects
Commit 2be5de29 authored by Paul Russo's avatar Paul Russo
Browse files

Fix problem with argument being "const void *".

git-svn-id: http://root.cern.ch/svn/root/trunk@39459 27541ba8-7e3a-0410-8455-c3a389f83636
parent 6ca54a1b
No related branches found
No related tags found
No related merge requests found
...@@ -229,7 +229,7 @@ char *G__input(const char *prompt) ...@@ -229,7 +229,7 @@ char *G__input(const char *prompt)
/* memory parity checker can not handle the pointer malloced in readlie */ /* memory parity checker can not handle the pointer malloced in readlie */
G__DUMMY_Free((void*)pchar); G__DUMMY_Free((void*)pchar);
#else #else
free(pchar); free((void*)pchar);
#endif #endif
if(line[0]!='\0') { if(line[0]!='\0') {
G__input_history(&state,line); G__input_history(&state,line);
......
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