Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libm/src Add missing ';' to fix the build.
details: https://anonhg.NetBSD.org/src/rev/0a037557a597
branches: trunk
changeset: 784429:0a037557a597
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Mon Jan 28 14:09:43 2013 +0000
description:
Add missing ';' to fix the build.
diffstat:
lib/libm/src/s_scalbnl.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r dfce65e17be8 -r 0a037557a597 lib/libm/src/s_scalbnl.c
--- a/lib/libm/src/s_scalbnl.c Mon Jan 28 13:49:08 2013 +0000
+++ b/lib/libm/src/s_scalbnl.c Mon Jan 28 14:09:43 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: s_scalbnl.c,v 1.2 2013/01/28 06:34:09 matt Exp $ */
+/* $NetBSD: s_scalbnl.c,v 1.3 2013/01/28 14:09:43 pgoyette Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: s_scalbnl.c,v 1.2 2013/01/28 06:34:09 matt Exp $");
+__RCSID("$NetBSD: s_scalbnl.c,v 1.3 2013/01/28 14:09:43 pgoyette Exp $");
#include "namespace.h"
@@ -61,7 +61,7 @@
long double
scalbnl(long double x, int n)
{
- return scalblnl(x, n)
+ return scalblnl(x, n);
}
#endif
Home |
Main Index |
Thread Index |
Old Index