SPDY: better name for queued frames counter.

No functional changes.
diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c
index 5693ea9..034d82d 100644
--- a/src/http/ngx_http_spdy.c
+++ b/src/http/ngx_http_spdy.c
@@ -2861,9 +2861,9 @@
 
             fc->error = 1;
 
-            if (stream->waiting) {
-                r->blocked -= stream->waiting;
-                stream->waiting = 0;
+            if (stream->queued) {
+                r->blocked -= stream->queued;
+                stream->queued = 0;
 
                 ev = fc->write;
                 ev->delayed = 0;