Module Name:    src
Committed By:   christos
Date:           Sat Jan 16 21:29:33 UTC 2016

Modified Files:
        src/lib/libm/noieee_src: n_fmod.c

Log Message:
fix typo


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/lib/libm/noieee_src/n_fmod.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libm/noieee_src/n_fmod.c
diff -u src/lib/libm/noieee_src/n_fmod.c:1.8 src/lib/libm/noieee_src/n_fmod.c:1.9
--- src/lib/libm/noieee_src/n_fmod.c:1.8	Sat Jan 16 14:44:05 2016
+++ src/lib/libm/noieee_src/n_fmod.c	Sat Jan 16 16:29:33 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: n_fmod.c,v 1.8 2016/01/16 19:44:05 christos Exp $	*/
+/*	$NetBSD: n_fmod.c,v 1.9 2016/01/16 21:29:33 christos Exp $	*/
 /*
  * Copyright (c) 1989, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -124,7 +124,7 @@ prf(const char *s, double d)
 		unsigned long long u;
 	} x;
 	x.d = d;
-	printf("%s = %#016.16llx (%24.16e)\n:, s, x.u, x.d);
+	printf("%s = %#016.16llx (%24.16e)\n", s, x.u, x.d);
 }
 
 static void

Reply via email to