Index: /branches/binary/server/memcached.c
===================================================================
--- /branches/binary/server/memcached.c (revision 757)
+++ /branches/binary/server/memcached.c (revision 758)
@@ -980,5 +980,5 @@
     size_t nkey;
     int i;
-    uint64_t *responseBuf = (uint64_t*) c->wbuf + BIN_INCR_HDR_LEN;
+    uint64_t *response_buf = (uint64_t*) c->wbuf + BIN_INCR_HDR_LEN;
 
     assert(c != NULL);
@@ -1008,7 +1008,7 @@
         tmpbuf[INCR_MAX_STORAGE_LEN]=0x00;
         add_delta(it, c->cmd == CMD_INCR, delta, tmpbuf);
-        *responseBuf=swap64(strtoull(tmpbuf, NULL, 10));
-
-        write_bin_response(c, responseBuf, BIN_INCR_HDR_LEN, INCR_RES_LEN);
+        *response_buf=swap64(strtoull(tmpbuf, NULL, 10));
+
+        write_bin_response(c, response_buf, BIN_INCR_HDR_LEN, INCR_RES_LEN);
         item_remove(it);         /* release our reference */
     } else {
@@ -1016,5 +1016,5 @@
             /* Save some room for the response */
             assert(c->wsize > BIN_INCR_HDR_LEN + BIN_DEL_HDR_LEN);
-            *responseBuf=swap64(initial);
+            *response_buf=swap64(initial);
             it = item_alloc(key, nkey, 0, realtime(exptime),
                 INCR_MAX_STORAGE_LEN);
@@ -1022,5 +1022,5 @@
 
             if(store_item(it, NREAD_SET)) {
-                write_bin_response(c, responseBuf, BIN_INCR_HDR_LEN,
+                write_bin_response(c, response_buf, BIN_INCR_HDR_LEN,
                     INCR_RES_LEN);
             } else {
