Index: benchmark/io/http/http_ring.cpp
===================================================================
--- benchmark/io/http/http_ring.cpp	(revision 761a2467835175a5da87d3c9dbcec0dfda257378)
+++ benchmark/io/http/http_ring.cpp	(revision 9715567d8a7b3060d34ab49ff1d8da8ac6d4bd44)
@@ -277,8 +277,8 @@
 
 	// Handle a new request, results for getting an cqe while in the REQUESTING state
-	void newrequest(struct io_uring * ring, int ret) {
+	void newrequest(struct io_uring * ring, int res) {
 		// Check errors
-		if( ret < 0 ) {
-			int err = -ret;
+		if( res < 0 ) {
+			int err = -res;
 			switch(err) {
 				case EPIPE:
@@ -304,5 +304,5 @@
 
 		// Is this an EOF
-		if(ret == 0) {
+		if(res == 0) {
 			// Yes, close the connection
 			this->close(0);
