Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/stdio tell lint to shut up.



details:   https://anonhg.NetBSD.org/src/rev/70b46d25ba91
branches:  trunk
changeset: 758157:70b46d25ba91
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Oct 23 14:12:50 2010 +0000

description:
tell lint to shut up.

diffstat:

 lib/libc/stdio/local.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (16 lines):

diff -r 372665f0ed4c -r 70b46d25ba91 lib/libc/stdio/local.h
--- a/lib/libc/stdio/local.h    Sat Oct 23 11:24:16 2010 +0000
+++ b/lib/libc/stdio/local.h    Sat Oct 23 14:12:50 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: local.h,v 1.27 2010/10/22 22:00:32 christos Exp $      */
+/*     $NetBSD: local.h,v 1.28 2010/10/23 14:12:50 christos Exp $      */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -117,5 +117,5 @@
 /*
  * Detect if the current file position fits in a long int.
  */
-#define _FPOS_OVERFLOW(pos) (sizeof(fpos_t) > sizeof(long) && \
+#define _FPOS_OVERFLOW(pos) (/*CONSTCOND*/sizeof(fpos_t) > sizeof(long) && \
        ((pos) & (~0ULL << ((sizeof(fpos_t) - sizeof(long)) * NBBY))) != 0)



Home | Main Index | Thread Index | Old Index