You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libecb/Coro-6.09-Fix-a-typo-in-ecb...

28 lines
754 B

12 years ago
From de7220dcac464425fc2667706100901d0fc7f444 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Mon, 8 Oct 2012 13:25:37 +0200
Subject: [PATCH] Fix a typo in ecb.h
A code for big endian system has a mistyped return word.
<https://rt.cpan.org/Public/Bug/Display.html?id=80056>
---
Coro/ecb.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Coro/ecb.h b/Coro/ecb.h
index 1162bc6..5a88f60 100644
--- a/Coro/ecb.h
+++ b/Coro/ecb.h
@@ -494,7 +494,7 @@ ecb_byteorder_helper (void)
#elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
return 0x44;
#elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
- retrurn 0x11;
+ return 0x11;
#else
union
{
--
1.7.11.7