From 814f8ea6a532b054106f69446dd14e4bb2f3645f Mon Sep 17 00:00:00 2001 From: drochner Date: Mon, 20 Feb 2006 17:14:33 +0000 Subject: [PATCH] fix pasto in comment --- regress/lib/libc/ieeefp/infinity/infinity.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regress/lib/libc/ieeefp/infinity/infinity.c b/regress/lib/libc/ieeefp/infinity/infinity.c index 2a3b6f9037f2..ebd24b087218 100644 --- a/regress/lib/libc/ieeefp/infinity/infinity.c +++ b/regress/lib/libc/ieeefp/infinity/infinity.c @@ -1,4 +1,4 @@ -/* $NetBSD: infinity.c,v 1.4 2004/03/05 01:00:53 kleink Exp $ */ +/* $NetBSD: infinity.c,v 1.5 2006/02/20 17:14:33 drochner Exp $ */ /* * This file is in the Public Domain. @@ -24,7 +24,7 @@ main(int argc, char **argv) /* HUGE_VALF is the float analog of HUGE_VAL. */ assert(isinf(HUGE_VALF)); - /* HUGE_VALL is the float analog of HUGE_VAL. */ + /* HUGE_VALL is the long double analog of HUGE_VAL. */ assert(isinf(HUGE_VALL)); return 0;