summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2006-11-13 07:01:00 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2006-11-13 07:01:00 +0000
commite546acd7ced07e7db127abdd6f31dd35a7dd42ba (patch)
tree83ac8d92f1f0966f7fa9b33303371fdf607ed1f9
parent2b9e4b720afff3b5a8ea31332ac63858de146e1c (diff)
missing ;
-rw-r--r--lib/libc/arch/sh/gen/infinity.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/sh/gen/infinity.c b/lib/libc/arch/sh/gen/infinity.c
index 82de0736c11..18d7a1b1ad1 100644
--- a/lib/libc/arch/sh/gen/infinity.c
+++ b/lib/libc/arch/sh/gen/infinity.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: infinity.c,v 1.2 2006/11/12 21:18:28 otto Exp $ */
+/* $OpenBSD: infinity.c,v 1.3 2006/11/13 07:00:59 otto Exp $ */
/* infinity.c */
@@ -9,5 +9,5 @@ char __infinity[] __attribute__((__aligned__(sizeof(double)))) =
#if _BYTE_ORDER == _LITTLE_ENDIAN
{ 0, 0, 0, 0, 0, 0, (char)0xf0, 0x7f };
#else
- { 0x7f, (char)0xf0, 0, 0, 0, 0, 0, 0 }
+ { 0x7f, (char)0xf0, 0, 0, 0, 0, 0, 0 };
#endif