diff options
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/mppcc.c | 2 | ||||
-rw-r--r-- | sys/net/mppcd.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/mppcc.c b/sys/net/mppcc.c index 01ce3ff..293ce46 100644 --- a/sys/net/mppcc.c +++ b/sys/net/mppcc.c @@ -233,7 +233,7 @@ int MPPC_Compress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, ch putbits16(*dst, 0xc000|(off-320), 16, &olen, &l); } else { /* NOTREACHED */ rtn &= ~MPPC_OK; - return rtn; + return (rtn); } /* Encode length of match. */ diff --git a/sys/net/mppcd.c b/sys/net/mppcd.c index c1730e5..d8e663c 100644 --- a/sys/net/mppcd.c +++ b/sys/net/mppcd.c @@ -170,7 +170,7 @@ int MPPC_Decompress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, rtn &= ~MPPC_OK; return (rtn); } - } else { /* NOTREACHED */ + } else { /* This shouldn't happen. */ rtn &= ~MPPC_OK; return (rtn); } |