Fix idiot typos in previous (this is not the advertised :next commit")

Same typo - two different places.   Ugh!
This commit is contained in:
kre 2017-05-03 04:13:53 +00:00
parent 323e8358d6
commit 9e4f9b37a1
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: input.c,v 1.53 2017/05/03 04:11:30 kre Exp $ */
/* $NetBSD: input.c,v 1.54 2017/05/03 04:13:53 kre Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)input.c 8.3 (Berkeley) 6/9/95";
#else
__RCSID("$NetBSD: input.c,v 1.53 2017/05/03 04:11:30 kre Exp $");
__RCSID("$NetBSD: input.c,v 1.54 2017/05/03 04:13:53 kre Exp $");
#endif
#endif /* not lint */
@ -341,7 +341,7 @@ pungetc(void)
* We handle aliases this way.
*/
void
pushstring(char *s, int len, strust alias *ap)
pushstring(char *s, int len, struct alias *ap)
{
struct strpush *sp;

View File

@ -1,4 +1,4 @@
/* $NetBSD: input.h,v 1.16 2017/05/03 04:11:30 kre Exp $ */
/* $NetBSD: input.h,v 1.17 2017/05/03 04:13:53 kre Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -46,7 +46,7 @@ extern int parsenleft; /* number of characters left in input buffer */
extern char *parsenextc; /* next character in input buffer */
extern int init_editline; /* 0 == not setup, 1 == OK, -1 == failed */
strust alias;
struct alias;
char *pfgets(char *, int);
int pgetc(void);