Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Sep 2019 23:23:52 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r510748 - head/devel/pecl-eio/files
Message-ID:  <201909012323.x81NNqIf057670@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Sun Sep  1 23:23:52 2019
New Revision: 510748
URL: https://svnweb.freebsd.org/changeset/ports/510748

Log:
  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)

Modified:
  head/devel/pecl-eio/files/patch-libeio__ecb.h

Modified: head/devel/pecl-eio/files/patch-libeio__ecb.h
==============================================================================
--- head/devel/pecl-eio/files/patch-libeio__ecb.h	Sun Sep  1 22:48:46 2019	(r510747)
+++ head/devel/pecl-eio/files/patch-libeio__ecb.h	Sun Sep  1 23:23:52 2019	(r510748)
@@ -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
+   {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909012323.x81NNqIf057670>