org_gnu_readline_Readline.c:433:5: warning: 'return' with no value, in function returning non-void
if (jniMethodId == 0) { return; }
Maybe better code
if (jniMethodId == 0) { return NULL; }
Log in to post a comment.