diff options
| author | joerg <joerg@NetBSD.org> | 2009-08-05 15:04:15 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2009-08-05 15:04:15 +0000 |
| commit | 0c2684fa82366037b08e7161ca90dbf76e91a7d1 (patch) | |
| tree | 2492974dbfdc10b9a452ea00e6bd03c4fc540e54 /common/lib/libc/string | |
| parent | 3b3738c16194e10f65d064c706e093e29e599326 (diff) | |
Fix a comment to not be self-referencing.
Diffstat (limited to 'common/lib/libc/string')
| -rw-r--r-- | common/lib/libc/string/popcount64.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/lib/libc/string/popcount64.c b/common/lib/libc/string/popcount64.c index 17fe737e1ad..51a1c19bedf 100644 --- a/common/lib/libc/string/popcount64.c +++ b/common/lib/libc/string/popcount64.c @@ -1,4 +1,4 @@ -/* $NetBSD: popcount64.c,v 1.4 2009/07/21 19:56:55 drochner Exp $ */ +/* $NetBSD: popcount64.c,v 1.5 2009/08/05 15:04:15 joerg Exp $ */ /*- * Copyright (c) 2009 The NetBSD Foundation, Inc. * All rights reserved. @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: popcount64.c,v 1.4 2009/07/21 19:56:55 drochner Exp $"); +__RCSID("$NetBSD: popcount64.c,v 1.5 2009/08/05 15:04:15 joerg Exp $"); #if !defined(_KERNEL) && !defined(_STANDALONE) #include <limits.h> @@ -46,8 +46,8 @@ __RCSID("$NetBSD: popcount64.c,v 1.4 2009/07/21 19:56:55 drochner Exp $"); * If uint64_t is larger than size_t, the follow assumes that * splitting into 32bit halfes is faster. * - * The native pocount64 version is based on the same ideas as popcount64(3), - * see popcount64.c for comments. + * The native pocount64 version is based on the same ideas as popcount32(3), + * see popcount32.c for comments. */ #if SIZE_MAX < 0xffffffffffffffffULL |
