Skip to content

Commit

Permalink
switch back to tab indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
bkw committed Apr 15, 2013
1 parent 6d9d341 commit 8c9da78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions amqp_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,10 +392,10 @@ int read_message_from_channel(amqp_connection_state_t connection, zval *envelope
}

if (p->_flags & AMQP_BASIC_HEADERS_FLAG) {
MAKE_STD_ZVAL(envelope->headers);
array_init(envelope->headers);
envelope->headers = parse_amqp_table(&(p->headers));
}
MAKE_STD_ZVAL(envelope->headers);
array_init(envelope->headers);
envelope->headers = parse_amqp_table(&(p->headers));
}

/* Check if we are going to even get a body */
if (frame.payload.properties.body_size == 0) {
Expand Down

0 comments on commit 8c9da78

Please sign in to comment.