add linted comment

This commit is contained in:
christos 2017-01-10 17:44:28 +00:00
parent 3b4ebb08a0
commit f8af623337
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fseeko.c,v 1.13 2014/10/19 11:17:43 justin Exp $ */
/* $NetBSD: fseeko.c,v 1.14 2017/01/10 17:44:28 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -34,7 +34,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: fseeko.c,v 1.13 2014/10/19 11:17:43 justin Exp $");
__RCSID("$NetBSD: fseeko.c,v 1.14 2017/01/10 17:44:28 christos Exp $");
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
@ -130,6 +130,7 @@ fseeko(FILE *fp, off_t offset, int whence)
FUNLOCKFILE(fp);
return -1;
}
/*FALLTHROUGH*/
case SEEK_END:
curoff = 0; /* XXX just to keep gcc quiet */
havepos = 0;