Menu

#1 compile error in npperlplus.c

open
nobody
None
5
2002-03-25
2002-03-25
Anonymous
No

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. :-)

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.