Mailing List Archive

cvs commit: apache-2.0/src/include ap_ring.h
fanf 00/09/07 19:44:23

Modified: src/include ap_ring.h
Log:
fix a dumb typo

Revision Changes Path
1.3 +1 -1 apache-2.0/src/include/ap_ring.h

Index: ap_ring.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/ap_ring.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -u -r1.2 -r1.3
--- ap_ring.h 2000/09/08 02:08:14 1.2
+++ ap_ring.h 2000/09/08 02:44:21 1.3
@@ -123,7 +123,7 @@
* part of a larger object with enough earlier fields to accommodate
* the offsetof() computed below. You can usually ignore this caveat.
*/
-#define AP_RING_SENTINAL(hp, elem, link) \
+#define AP_RING_SENTINEL(hp, elem, link) \
(struct elem *)((char *)(hp) - offsetof(struct elem, link))

/*