Remove silly superflous parenthesis.

This commit is contained in:
Markus Armbruster 2006-03-26 07:46:49 +00:00
parent beae3ea770
commit 0d0a305bf3
14 changed files with 31 additions and 31 deletions

View file

@ -46,9 +46,9 @@ int
show(void)
{
s_char *p;
void (*cfunc) (int);
void (*sfunc) (int);
void (*bfunc) (int);
void (*cfunc)(int);
void (*sfunc)(int);
void (*bfunc)(int);
struct natstr *natp;
int tlev;
s_char buf[1024];
@ -126,11 +126,11 @@ show(void)
|| !*p)
return RET_SYN;
if (*p == 'B' || *p == 'b')
(*bfunc) (tlev);
bfunc(tlev);
else if (*p == 'C' || *p == 'c')
(*cfunc) (tlev);
cfunc(tlev);
else if (*p == 'S' || *p == 's')
(*sfunc) (tlev);
sfunc(tlev);
else
return RET_SYN;
return RET_OK;