Fix obvious typo in upstream code:

./libeio/ecb.h:481:3: error: use of undeclared identifier 'retrurn'

This only affects big-endian systems, but still needs to be reported
to the upstream maintainers.

Approved by:	portmgr (tier-2 blankent)
This commit is contained in:
Mark Linimon 2019-09-01 23:23:52 +00:00
parent bb401c1a91
commit c2d73d949a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=510748

View file

@ -15,3 +15,12 @@
#endif
/* try to tell the compiler that some condition is definitely true */
@@ -478,7 +478,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
{