compile error in npperlplus.c
Status: Beta
Brought to you by:
fholtry
Using linux with gcc3.0.3 and
PerlPlusPlugin.0.95.04.tar.gz
error:
src/npperlplus.c: In function `NPP_New':
src/npperlplus.c:182: too few arguments to function `kill'
make[1]: *** [npperlplus.o] Error 1
needed to change line 182 in npperlplus.c
from
if ((kill(This->pid),0) == 0 && This->running )
to
if ((kill((This->pid),0) == 0) && This->running )
^^
Missing a (
I like this plugin. :-)