1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-25 06:34:07 -04:00

Fix up some trivial gcc -Wall warnings

Lots more to go.
This commit is contained in:
Linus Torvalds
2005-09-30 23:37:34 -07:00
parent d5dc3160cf
commit d0ed902432
10 changed files with 22 additions and 28 deletions

View File

@@ -243,8 +243,8 @@ int gotobop(int f, int n)
#if PKCODE
((justflag == TRUE) ||
#endif
lgetc(curwp->w_dotp, curwp->w_doto) != TAB &&
lgetc(curwp->w_dotp, curwp->w_doto) != ' ')
(lgetc(curwp->w_dotp, curwp->w_doto) != TAB &&
lgetc(curwp->w_dotp, curwp->w_doto) != ' '))
#if PKCODE
)
#endif
@@ -292,8 +292,8 @@ int gotoeop(int f, int n)
#if PKCODE
((justflag == TRUE) ||
#endif
lgetc(curwp->w_dotp, curwp->w_doto) != TAB &&
lgetc(curwp->w_dotp, curwp->w_doto) != ' ')
(lgetc(curwp->w_dotp, curwp->w_doto) != TAB &&
lgetc(curwp->w_dotp, curwp->w_doto) != ' '))
#if PKCODE
)
#endif